feat: with rust workspaces
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2023-08-07 13:34:58 +02:00
parent 56b44cf2e2
commit b711258790
7 changed files with 179 additions and 2 deletions

View File

@@ -13,11 +13,13 @@ anyhow.workspace = true
tracing.workspace = true
serde.workspace = true
semver.workspace = true
cargo_metadata = "0.17.0"
[dev-dependencies]
tracing-test = { workspace = true, features = ["no-env-filter"] }
pretty_assertions.workspace = true
tempdir.workspace = true
serde_json.workspace = true
[features]
rust-workspace = []
@@ -27,5 +29,6 @@ json-edit = []
yaml-edit = []
default = [
"json-edit"
"json-edit",
"rust-workspace"
]