diff --git a/Cargo.toml b/Cargo.toml index 7aaf1026..311c1eb6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,27 +2,25 @@ name = "identity-sequencer" version = "0.1.0" edition = "2021" - # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [workspace] members = [ + "crates/common" +, "crates/sequencer", - "crates/tree_availability", "crates/state_bridge", - "crates/common" -] + "crates/tree_availability"] [dependencies] -clap = {version = "4.4.6", features = ["derive"]} +clap = { version = "4.4.6", features = ["derive"] } ethers = "2.0.10" eyre = "0.6.8" futures = "0.3.28" reqwest = "0.11.22" -tokio = { version = "1.33.0", features = ["full"]} +tokio = { version = "1.33.0", features = ["full"] } tree_availability = { path = "crates/tree_availability" } - [[bin]] name = "tree-availability-service" path = "bin/tree_availability_service.rs" diff --git a/crates/sequencer/Cargo.toml b/crates/sequencer/Cargo.toml index 480be02b..f51150fa 100644 --- a/crates/sequencer/Cargo.toml +++ b/crates/sequencer/Cargo.toml @@ -2,7 +2,6 @@ name = "sequencer" version = "0.1.0" edition = "2021" - # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] diff --git a/crates/state_bridge/Cargo.toml b/crates/state_bridge/Cargo.toml index bac609a9..4785f3e1 100644 --- a/crates/state_bridge/Cargo.toml +++ b/crates/state_bridge/Cargo.toml @@ -2,21 +2,11 @@ name = "state_bridge" version = "0.1.0" edition = "2021" - # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] -serde = "1.0.188" -serde_json = "1.0.107" -semaphore = { git = "https://github.com/worldcoin/semaphore-rs", branch = "main", features = [ - "depth_20", -] } -thiserror = "1.0.49" -tracing = "0.1.37" +anyhow = "1.0.75" chrono = { version = "0.4.31", features = ["serde"] } # TODO: maybe remove this -tokio = {version = "1.32.0", features = ["sync","test-util","macros"]} -take_mut = "0.2.2" -ethers-solc = { git = "https://github.com/gakonst/ethers-rs" } ethers = { version = "2.0.10", features = [ "abigen", "ws", @@ -24,10 +14,19 @@ ethers = { version = "2.0.10", features = [ "rustls", "openssl", ] } -ruint = "1.10.1" +ethers-solc = { git = "https://github.com/gakonst/ethers-rs" } eyre = "0.6.8" -anyhow = "1.0.75" hex = "0.4.3" +ruint = "1.10.1" +semaphore = { git = "https://github.com/worldcoin/semaphore-rs", branch = "main", features = [ + "depth_20", +] } +serde = "1.0.188" +serde_json = "1.0.107" +take_mut = "0.2.2" +thiserror = "1.0.49" +tokio = { version = "1.32.0", features = ["sync","test-util","macros"] } +tracing = "0.1.37" [dev-dependencies] -common = {path = "../common"} \ No newline at end of file +common = { path = "../common" }