Skip to content

Commit

Permalink
cargo sort
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKitsune committed Oct 27, 2023
1 parent 788e563 commit 87b017c
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 22 deletions.
12 changes: 5 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion crates/sequencer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
27 changes: 13 additions & 14 deletions crates/state_bridge/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,32 +2,31 @@
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",
"ipc",
"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"}
common = { path = "../common" }

0 comments on commit 87b017c

Please sign in to comment.