-
Notifications
You must be signed in to change notification settings - Fork 24
/
Cargo.toml
33 lines (28 loc) · 898 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
[package]
name = "homestar-schemas"
publish = false
version = { workspace = true }
edition = { workspace = true }
rust-version = { workspace = true }
[dependencies]
homestar-invocation = { version = "0.3", path = "../homestar-invocation", default-features = false }
homestar-runtime = { version = "0.3", path = "../homestar-runtime", default-features = false, features = [
"websocket-notify",
] }
homestar-workflow = { version = "0.3", path = "../homestar-workflow", default-features = false }
homestar-workspace-hack = { workspace = true }
schemars = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
[[bin]]
name = "schemas"
path = "src/main.rs"
bench = false
doc = false
test = false
[features]
default = []
[package.metadata.cargo-machete]
ignored = ["homestar-workspace-hack"]
[package.metadata.cargo-udeps.ignore]
normal = ["homestar-workspace-hack"]