Skip to content

Commit

Permalink
Reorganize dependancies
Browse files Browse the repository at this point in the history
  • Loading branch information
TSnake41 committed Aug 16, 2023
1 parent 45e124d commit 0d0bcae
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 10 deletions.
8 changes: 6 additions & 2 deletions plugins/xcp-metrics-plugin-bridge-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ categories.workspace = true
xcp-metrics-common = { path = "../../xcp-metrics-common" }
xcp-metrics-plugin-common = { path = "../xcp-metrics-plugin-common" }

tokio = { version = "1", features = ["full"] }
uuid = "1.4"
anyhow = "1.0"
fastrand = "2.0"
clap = { version = "4.3.19", features = ["derive"] }

tokio = { version = "1", features = ["full"] }

[dependencies.clap]
version = "4.3"
features = ["derive"]
3 changes: 2 additions & 1 deletion plugins/xcp-metrics-plugin-xen-v2/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ xcp-metrics-plugin-common = { path = "../xcp-metrics-plugin-common" }
xenctrl = { git = "https://github.com/TSnake41/xenctrl", branch = "more_functions" }
xenctrl-sys = "*"

tokio = { version = "1", features = ["full"] }
uuid = "1.4"
anyhow = "1.0"

tokio = { version = "1", features = ["full"] }
5 changes: 3 additions & 2 deletions plugins/xcp-metrics-plugin-xen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ xenctrl-sys = "*"
tokio = { version = "1", features = ["full"] }
uuid = "1.4"
anyhow = "1.0"
maplit = "1.0"

clap = { version = "4.3.19", features = ["derive"] }
[dependencies.clap]
version = "4.3"
features = ["derive"]
6 changes: 4 additions & 2 deletions plugins/xcp-metrics-plugin-xenstored/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,13 @@ xcp-metrics-plugin-common = { path = "../xcp-metrics-plugin-common" }
uuid = "1.4"
anyhow = "1.0"
dashmap = "5.5"
futures = "0.3"

tokio = { version = "1", features = ["full"] }
futures = "0.3"

clap = { version = "4.3.19", features = ["derive"] }
[dependencies.clap]
version = "4.3"
features = ["derive"]

[dependencies.xenstore-rs]
git = "https://github.com/tsnake41/xenstore-rs"
Expand Down
7 changes: 5 additions & 2 deletions xcp-metrics-tools/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,14 @@ edition = "2021"

[dependencies]
xcp-metrics-common = { path = "../xcp-metrics-common" }
anyhow = "*"
anyhow = "1.0"
serde_json = "1.0"

tokio = { version = "1", features = ["full"] }
clap = { version = "4.3.19", features = ["derive"] }

[dependencies.clap]
version = "4.3"
features = ["derive"]

[dependencies.quick-xml]
version = "0.29"
Expand Down
2 changes: 1 addition & 1 deletion xcp-metrics/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
xcp-metrics-common = { version = "*", path = "../xcp-metrics-common" }
xcp-metrics-common = { path = "../xcp-metrics-common" }
serde_json = "1.0"
anyhow = "1.0"
once_cell = "1.18"
Expand Down

0 comments on commit 0d0bcae

Please sign in to comment.