-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
94 lines (83 loc) · 2.48 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[package]
name = "orbuculum"
version = "0.0.1"
edition = "2021"
[workspace]
members = ["crates/*"]
[workspace.dependencies]
glib = { git = "https://github.com/gtk-rs/gtk-rs-core", rev = "cab7e1c549675cbe98af461ebbcc04c33c8f1295" }
nm = { git = "https://github.com/imgurbot12/libnm-rs" }
eyre = "0.6.8"
tokio = { version = "1.23.0", features = ["full"] }
serde_json = "1.0.93"
serde = { version = "1.0.158", features = ["derive"] }
rstest = "0.17.0"
temp_testdir = "0.2.3"
serde_derive = "1.0.152"
futures = "0.3.27"
tracing = "0.1.37"
env_logger = "0.10.0"
log = "0.4.17"
axum = "0.6.12"
tonic = "0.8.3"
hyper = "0.14.23"
orbuculum-nm = { version = "0.0.1", path = "crates/orbuculum-nm" }
orbuculum-grpc = { version = "0.0.1", path = "crates/orbuculum-grpc" }
orbuculum-rules = { version = "0.0.1", path = "crates/orbuculum-rules" }
orbuculum-web = { version = "0.0.1", path = "crates/orbuculum-web" }
orbuculum-ctl = { version = "0.0.1", path = "crates/orbuculum-ctl" }
tower-http = { version = "0.4.0", features = ["trace"] }
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "orbuculum-web"
[[bin]]
name = "orbuculum-rhai"
[[bin]]
name = "orbuculum-ctl"
[dependencies]
env_logger = { workspace = true }
futures = { workspace = true }
hyper = { workspace = true }
eyre = { workspace = true }
log = { workspace = true }
tokio = { workspace = true }
tower-http = { workspace = true }
tracing = { workspace = true }
serde_json = { workspace = true }
axum = { workspace = true }
orbuculum-nm = { workspace = true }
orbuculum-grpc = { workspace = true }
orbuculum-rules = { workspace = true }
orbuculum-web = { workspace = true }
orbuculum-ctl = { workspace = true }
structopt = "0.3.26"
[features]
v1_2 = ['orbuculum-nm/v1_2']
v1_4 = ['orbuculum-nm/v1_4']
v1_6 = ['orbuculum-nm/v1_6']
v1_8 = ['orbuculum-nm/v1_8']
v1_10 = ['orbuculum-nm/v1_10']
v1_12 = ['orbuculum-nm/v1_12']
v1_14 = ['orbuculum-nm/v1_14']
v1_16 = ['orbuculum-nm/v1_16']
v1_18 = ['orbuculum-nm/v1_18']
v1_20 = ['orbuculum-nm/v1_20']
v1_22 = ['orbuculum-nm/v1_22']
v1_24 = ['orbuculum-nm/v1_24']
v1_26 = ['orbuculum-nm/v1_26']
v1_28 = ['orbuculum-nm/v1_28']
v1_30 = ['orbuculum-nm/v1_30']
v1_32 = ['orbuculum-nm/v1_32']
v1_34 = ['orbuculum-nm/v1_34']
v1_36 = ['orbuculum-nm/v1_36']
v1_38 = ['orbuculum-nm/v1_38']
v1_40 = ['orbuculum-nm/v1_40']
default = ['v1_40']
[profile.release]
lto = true
panic = 'abort'
opt-level = 'z'
codegen-units = 1
[dev-dependencies]
rstest.workspace = true
tempfile = "3.5.0"