Skip to content
Snippets Groups Projects
Verified Commit 42836633 authored by Loris Moulin's avatar Loris Moulin
Browse files

feat: updated workspace deps and added toml for dumping of configuration

parent e463a117
Branches
No related merge requests found
......@@ -5,7 +5,7 @@ members = [
"crates/configuration",
"crates/orchestrator",
"crates/provider",
"crates/test-runner"
"crates/test-runner",
]
[workspace.dependencies]
......@@ -13,11 +13,12 @@ thiserror = "1.0"
anyhow = "1.0"
async-trait = "0.1"
futures = "0.3"
serde = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.7"
tokio = "1.28"
reqwest = "0.11"
regex = "1.8"
lazy_static = "1.4"
multiaddr = "0.17"
url = "2.3"
\ No newline at end of file
multiaddr = "0.18"
url = "2.3"
......@@ -10,3 +10,5 @@ multiaddr = { workspace = true }
url = { workspace = true }
thiserror = { workspace = true }
anyhow = { workspace = true }
serde = { workspace = true, features = ["derive"] }
toml = { workspace = true }
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment