Skip to content

Commit

Permalink
chore clean up more deps
Browse files Browse the repository at this point in the history
  • Loading branch information
kariy committed Apr 8, 2024
1 parent fa85c8f commit 9510fd2
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 28 deletions.
6 changes: 3 additions & 3 deletions crates/katana/core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ repository.workspace = true
version.workspace = true

[dependencies]
katana-db = { path = "../storage/db" }
katana-db.workspace = true
katana-executor.workspace = true
katana-primitives = { path = "../primitives" }
katana-provider = { path = "../storage/provider" }
katana-primitives.workspace = true
katana-provider.workspace = true
katana-tasks.workspace = true

anyhow.workspace = true
Expand Down
6 changes: 3 additions & 3 deletions crates/katana/rpc/rpc-api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
katana-core = { path = "../../core" }
katana-primitives = { path = "../../primitives" }
katana-rpc-types = { path = "../rpc-types" }
katana-core.workspace = true
katana-primitives.workspace = true
katana-rpc-types.workspace = true

jsonrpsee = { workspace = true, features = [ "macros", "server" ] }
starknet.workspace = true
Expand Down
8 changes: 4 additions & 4 deletions crates/katana/rpc/rpc-types-builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
katana-executor = { path = "../../executor" }
katana-primitives = { path = "../../primitives" }
katana-provider = { path = "../../storage/provider" }
katana-rpc-types = { path = "../rpc-types" }
katana-executor.workspace = true
katana-primitives.workspace = true
katana-provider.workspace = true
katana-rpc-types.workspace = true

anyhow.workspace = true
starknet.workspace = true
6 changes: 3 additions & 3 deletions crates/katana/rpc/rpc-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
katana-core = { path = "../../core" }
katana-core.workspace = true
katana-executor.workspace = true
katana-primitives = { path = "../../primitives" }
katana-provider = { path = "../../storage/provider" }
katana-primitives.workspace = true
katana-provider.workspace = true

anyhow.workspace = true
derive_more.workspace = true
Expand Down
18 changes: 9 additions & 9 deletions crates/katana/rpc/rpc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ version.workspace = true

[dependencies]
dojo-metrics.workspace = true
katana-core = { path = "../../core" }
katana-executor = { path = "../../executor" }
katana-primitives = { path = "../../primitives" }
katana-provider = { path = "../../storage/provider" }
katana-rpc-api = { path = "../rpc-api" }
katana-rpc-types = { path = "../rpc-types" }
katana-rpc-types-builder = { path = "../rpc-types-builder" }
katana-tasks = { path = "../../tasks" }
katana-core.workspace = true
katana-executor.workspace = true
katana-primitives.workspace = true
katana-provider.workspace = true
katana-rpc-api.workspace = true
katana-rpc-types-builder.workspace = true
katana-rpc-types.workspace = true
katana-tasks.workspace = true

anyhow.workspace = true
flate2.workspace = true
Expand All @@ -38,7 +38,7 @@ tracing.workspace = true
[dev-dependencies]
assert_matches = "1.5.0"
cairo-lang-starknet.workspace = true
dojo-test-utils = { path = "../../../dojo-test-utils" }
dojo-test-utils.workspace = true
jsonrpsee = { workspace = true, features = [ "client" ] }
katana-rpc-api = { workspace = true, features = [ "client" ] }
url.workspace = true
2 changes: 1 addition & 1 deletion crates/katana/storage/codecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ version.workspace = true

[dependencies]
bytes = "1.5.0"
katana-primitives = { path = "../../primitives" }
katana-primitives.workspace = true
4 changes: 2 additions & 2 deletions crates/katana/storage/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
katana-primitives = { path = "../../primitives" }
katana-primitives = { workspace = true }

anyhow.workspace = true
page_size = "0.6.0"
Expand All @@ -18,8 +18,8 @@ tempfile = { version = "3.8.1", optional = true }
thiserror.workspace = true

cairo-vm.workspace = true
roaring = { version = "0.10.3", features = [ "serde" ] }
starknet_api.workspace = true
roaring = { version = "0.10.3", features = ["serde"] }

# codecs
[dependencies.postcard]
Expand Down
6 changes: 3 additions & 3 deletions crates/katana/storage/provider/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ version.workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
katana-db = { path = "../db", features = [ "test-utils" ] }
katana-primitives = { path = "../../primitives", features = [ "rpc" ] }
katana-db = { workspace = true, features = [ "test-utils" ] }
katana-primitives = { workspace = true, features = [ "rpc" ] }

anyhow.workspace = true
auto_impl = "1.2.0"
Expand All @@ -27,7 +27,7 @@ fork = [ "dep:futures", "dep:starknet", "dep:tokio", "in-memory" ]
in-memory = [ ]

[dev-dependencies]
katana-core = { path = "../../core" }
katana-core.workspace = true
katana-runner.workspace = true
lazy_static.workspace = true
rand = "0.8.5"
Expand Down

0 comments on commit 9510fd2

Please sign in to comment.