Skip to content

Commit

Permalink
Improve Cargo.toml format
Browse files Browse the repository at this point in the history
Signed-off-by: Quanyi Ma <[email protected]>
  • Loading branch information
genedna committed Sep 10, 2024
1 parent 9bc5a05 commit 5f0ada8
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 22 deletions.
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ saturn = { path = "saturn" }
taurus = { path = "taurus" }
mega = { path = "mega" }
mono = { path = "mono" }
libra = { path = "libra" }

anyhow = "1.0.87"
serde = "1.0.210"
Expand Down
3 changes: 2 additions & 1 deletion aries/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ common = { workspace = true }
callisto = { workspace = true }
gemini = { workspace = true }
jupiter = { workspace = true }

tokio = { workspace = true }
clap = { workspace = true, features = ["derive"] }
tracing = { workspace = true }
Expand All @@ -30,4 +31,4 @@ tower-http = { workspace = true, features = [
"decompression-full",
] }
ctrlc = "3.4.4"
regex = "1.10.4"
regex = "1.10.4"
Empty file added aries/README.md
Empty file.
8 changes: 4 additions & 4 deletions atlas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ version = "0.1.0"
edition = "2021"

[dependencies]
async-openai = "0.23.4"
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
tokio = { workspace = true, features = ["macros"] }
reqwest = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
async-openai = "0.23.4"
1 change: 1 addition & 0 deletions ceres/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ common = { workspace = true }
jupiter = { workspace = true }
callisto = { workspace = true }
mercury = { workspace = true }

anyhow = { workspace = true }
tokio = { workspace = true, features = ["net"] }
tokio-stream = { workspace = true }
Expand Down
13 changes: 7 additions & 6 deletions gemini/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,17 @@ path = "src/lib.rs"

[dependencies]
common = { workspace = true }
callisto = { workspace = true }
vault = { workspace = true }
jupiter = { workspace = true }
neptune = { workspace = true }
ceres = { workspace = true }

axum = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
reqwest = { workspace = true }
tracing = { workspace = true }
tokio = { workspace = true, features = ["net"] }
chrono = { workspace = true }
jupiter = { workspace = true }
vault = { workspace = true }
callisto = { workspace = true }
ceres = { workspace = true }
neptune = { workspace = true }
secp256k1 = { version = "0.29.0", features = ["serde", "rand","hashes"] }
secp256k1 = { version = "0.29.0", features = ["serde", "rand","hashes"] }
3 changes: 2 additions & 1 deletion libra/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ path = "src/main.rs"
[dependencies]
mercury = { workspace = true }
ceres = { workspace = true }

sea-orm = { workspace = true, features = [
"sqlx-sqlite",
"runtime-tokio-rustls",
Expand Down Expand Up @@ -51,4 +52,4 @@ pager = "0.16.0"

[dev-dependencies]
tokio = { workspace = true, features = ["macros", "process"] }
tracing-test = "0.2.4"
tracing-test = "0.2.4"
1 change: 1 addition & 0 deletions saturn/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ edition = "2021"

[dependencies]
common = { workspace = true }

serde = { workspace = true }
serde_json = { workspace = true }
tracing = { workspace = true }
Expand Down
18 changes: 10 additions & 8 deletions scorpio/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,23 +4,25 @@ version = "0.1.0"
edition = "2021"

[dependencies]
libra = {path = "../libra"}
fuse-backend-rs = { version = "0.12.0"}
libra = { path = "../libra" }
mercury = { path = "../mercury" }

toml = "0.8.19"
fuser = "0.14.0"
libc = "0.2.155"
log = "0.4.22"
radix_trie = "0.2.1"
radix_trie = "0.2.1"
signal-hook = "0.3.17"
tracing = "0.1.40"
reqwest = { version = "0.12.5", features = ["json"] }
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.117"
once_cell = "1.19.0"
tokio = { version = "1.38.1", features = ["full"] }
arc-swap = "1.5"
reqwest = { version = "0.12.5", features = ["json"] }
serde = { version = "1.0.203", features = ["derive"] }
fuse-backend-rs = { version = "0.12.0"}
tokio = { version = "1.38.1", features = ["full"] }
vm-memory = { version = "0.10", features = ["backend-mmap", "backend-bitmap"] }
mercury = { path = "../mercury" }
toml = "0.8.19"

[features]
async-io = []

Expand Down
4 changes: 2 additions & 2 deletions vault/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ go-defer = "0.1.0"
openssl = "0.10.64"
hex = "0.4.3"
lazy_static = "1.5.0"
secp256k1 = { version = "0.29.0", features = ["serde", "rand"] }
bs58 = "0.5.1"
serde = { version = "1.0.117", features = ["derive"] }
serde = { version = "1.0.117", features = ["derive"] }
secp256k1 = { version = "0.29.0", features = ["serde", "rand"] }

0 comments on commit 5f0ada8

Please sign in to comment.