diff --git a/Cargo.toml b/Cargo.toml index 78d5e4d..85d2d33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -46,11 +46,6 @@ serde = { version = "1.0.219", features = ["derive"] } serde_json = { version = "1.0.140", features = ["raw_value"] } strum = { version = "0.27.1", features = ["derive"] } rstest = "0.25.0" -graph_tally_aggregator = { version = "0.6.4", path = "crates/aggregator" } -graph_tally_eip712_message = { version = "0.2.3", path = "crates/eip712_message" } -graph_tally_core = { version = "6.0.3", path = "crates/core" } -graph_tally_graph = { version = "0.3.5", path = "crates/graph" } -graph_tally_receipt = { version = "1.1.4", path = "crates/receipt" } thegraph-core = "0.15.1" thiserror = "2.0.12" tokio = { version = "1.44.2", features = ["macros", "signal"] } diff --git a/crates/aggregator/Cargo.toml b/crates/aggregator/Cargo.toml index e994401..0fc73c0 100644 --- a/crates/aggregator/Cargo.toml +++ b/crates/aggregator/Cargo.toml @@ -28,8 +28,8 @@ rdkafka.workspace = true serde.workspace = true serde_json.workspace = true strum.workspace = true -graph_tally_core.workspace = true -graph_tally_graph.workspace = true +graph_tally_core = { path = "../core" } +graph_tally_graph = { path = "../graph" } thegraph-core = { workspace = true, features = ["alloy-eip712"] } tokio.workspace = true tonic.workspace = true diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 6242a05..fb78b1a 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -11,9 +11,9 @@ description = "Core Graph Tally library: a fast, efficient and trustless unidire anyhow.workspace = true async-trait.workspace = true rand.workspace = true -graph_tally_eip712_message.workspace = true -graph_tally_graph = { workspace = true, optional = true } -graph_tally_receipt.workspace = true +graph_tally_eip712_message = { path = "../eip712_message" } +graph_tally_graph = { path = "../graph", optional = true } +graph_tally_receipt = { path = "../receipt" } thegraph-core.workspace = true thiserror.workspace = true tokio.workspace = true diff --git a/crates/graph/Cargo.toml b/crates/graph/Cargo.toml index e457f35..5d9f562 100644 --- a/crates/graph/Cargo.toml +++ b/crates/graph/Cargo.toml @@ -10,8 +10,8 @@ description = "The Graph Tally receipt structs" [dependencies] rand.workspace = true serde.workspace = true -graph_tally_eip712_message.workspace = true -graph_tally_receipt.workspace = true +graph_tally_eip712_message = { path = "../eip712_message" } +graph_tally_receipt = { path = "../receipt" } thegraph-core.workspace = true [dev-dependencies] diff --git a/crates/integration_tests/Cargo.toml b/crates/integration_tests/Cargo.toml index 9fe48b8..37e49a2 100644 --- a/crates/integration_tests/Cargo.toml +++ b/crates/integration_tests/Cargo.toml @@ -10,9 +10,9 @@ description = "Integration tests for Graph Tally." publish = false [dependencies] -graph_tally_aggregator.workspace = true -graph_tally_core.workspace = true -graph_tally_graph.workspace = true +graph_tally_aggregator = { path = "../aggregator" } +graph_tally_core = { path = "../core" } +graph_tally_graph = { path = "../graph" } anyhow.workspace = true jsonrpsee = { workspace = true, features = ["jsonrpsee-http-client"] } diff --git a/crates/receipt/Cargo.toml b/crates/receipt/Cargo.toml index 9f295fb..7f79376 100644 --- a/crates/receipt/Cargo.toml +++ b/crates/receipt/Cargo.toml @@ -12,7 +12,7 @@ anyhow.workspace = true anymap3.workspace = true async-trait.workspace = true serde.workspace = true -graph_tally_eip712_message.workspace = true +graph_tally_eip712_message = { path = "../eip712_message" } thegraph-core.workspace = true thiserror.workspace = true