Skip to content

Commit

Permalink
feat(config): Layered configuration [fixes NET-424] (#1551)
Browse files Browse the repository at this point in the history
  • Loading branch information
gurinderu committed Apr 10, 2023
1 parent 040eb50 commit 8e20c10
Show file tree
Hide file tree
Showing 13 changed files with 971 additions and 616 deletions.
311 changes: 264 additions & 47 deletions Cargo.lock

Large diffs are not rendered by default.

10 changes: 6 additions & 4 deletions crates/server-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,25 @@ particle-protocol = { workspace = true }
fluence-libp2p = { workspace = true, features = ["tokio"] }
air-interpreter-fs = { workspace = true }
peer-metrics = { workspace = true }

fluence-keypair = { workspace = true }

libp2p = { workspace = true }
libp2p-metrics = { workspace = true }

serde = { version = "1.0.159", features = ["derive"] }
humantime-serde = { workspace = true }

serde_json = "1.0.95"
log = { workspace = true }
rand = "0.8.5"
clap = "3.2.23"
toml = "0.5.10"
clap = { version = "4.1.13", features = ["derive", "string"] }
bs58 = { workspace = true }
base64 = { workspace = true }
num_cpus = "1.15.0"
eyre = { workspace = true }
derivative = { workspace = true }
bytesize = { version = "1.1.0", features = ["serde"] }
serde_with = "2.2.0"
figment = { version = "0.10.8", features = ["parking_lot", "toml", "yaml", "json", "env"] }

[dev-dependencies]
figment = { version = "0.10.8", features = ["test"] }
Loading

0 comments on commit 8e20c10

Please sign in to comment.