chore(harmony): Use Cargo workspaces for core harmony and client specific implementation

This commit is contained in:
jeangab
2024-09-06 12:17:23 -04:00
parent aa28ab37b8
commit cc01ec5fe5
41 changed files with 783 additions and 142 deletions

View File

@@ -1,17 +1,17 @@
[package]
name = "harmony-rs"
version = "0.1.0"
edition = "2021"
[workspace]
resolver = "2"
members = [
"fqm",
"harmony",
]
[dependencies]
derive-new = "0.7.0"
env_logger = "0.11.5"
libredfish = "0.1.1"
[workspace.package]
version = "0.1.0"
readme = "README.md"
license = "GNU AGPL v3"
[workspace.dependencies]
log = "0.4.22"
reqwest = {version = "0.11", features = ["blocking", "json"] }
russh = "0.45.0"
rust-ipmi = "0.1.1"
semver = "1.0.23"
serde = { version = "1.0.209", features = ["derive"] }
serde_json = "1.0.127"
tokio = { version = "1.40.0", features = ["io-std"] }
env_logger = "0.11.5"
derive-new = "0.7.0"
async-trait = "0.1.82"