Skip to content

Commit

Permalink
lint toml
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-tennison committed Aug 3, 2024
1 parent a99321a commit a08957b
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ members = [
"service",
]

exclude = [
"./target/*"
]
exclude = ["./target/*"]

[workspace.dependencies]

Expand All @@ -22,9 +20,9 @@ citadel-internal-service-connector = { path = "./citadel-internal-service-connec
citadel-internal-service-macros = { path = "./citadel-internal-service-macros", default-features = false, version = "0.1.0" }

# Avarok deps
citadel_sdk = { git = "https://github.com/Avarok-Cybersecurity/Citadel-Protocol/"}
citadel_types = { git = "https://github.com/Avarok-Cybersecurity/Citadel-Protocol"}
citadel_logging = { git = "https://github.com/Avarok-Cybersecurity/Citadel-Protocol/"}
citadel_sdk = { git = "https://github.com/Avarok-Cybersecurity/Citadel-Protocol/" }
citadel_types = { git = "https://github.com/Avarok-Cybersecurity/Citadel-Protocol/" }
citadel_logging = { git = "https://github.com/Avarok-Cybersecurity/Citadel-Protocol/" }

# Standard deps
serde = { version = "1.0.104", features = ["derive"] }
Expand All @@ -33,13 +31,13 @@ tokio-util = { version = "0.7.8", default-features = false }
bincode2 = { version = "2.0.1", default-features = false }
futures = { version = "0.3.28", default-features = false }
bytes = { version = "1.4.0", default-features = false }
uuid = { version="1.3.3", features = [
uuid = { version = "1.3.3", features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]}
] }
anyhow = "1.0.71"
async-recursion = { version = "1.0.4" }
parking_lot = { version = "0.12.1" }
structopt = { version = "0.3.26" }
lazy_static = "1.4.0"
lazy_static = "1.4.0"

0 comments on commit a08957b

Please sign in to comment.