-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
51 lines (48 loc) · 1.02 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
[workspace]
members = [
"rusteron-code-gen",
"rusteron-rb",
"rusteron-media-driver",
"rusteron-client",
"rusteron-archive",
]
exclude = ["rusteron-docker-samples/rusteron-dummy-example"]
resolver = "2"
[workspace.dependencies]
rusteron-code-gen = { path = "rusteron-code-gen", version = "0.1.69" }
ctrlc = "3.4"
bindgen = "0.71"
cmake = "0.1"
dunce = "1.0"
pkg-config = "0.3"
syn = { version = "2.0", features = ["full"] }
proc-macro2 = "1.0"
quote = "1.0"
itertools = "0.14"
num-format = "0.4"
hdrhistogram = "7.5"
zerocopy = { version = "0.8", features = ["derive", "simd", "alloc"] }
criterion = "0.5"
serial_test = "3.2"
regex = "1.11"
log = "0.4"
[release]
bump = "auto"
update_dependencies = true
publish = true
workspace = true
auto_publish = true
push = true
tag = true
dependency_version = "update"
consolidate_commits = true
allow_dirty = true
no_confirm = true
update_crates_index = true
verify = false
[profile.release]
#opt-level = 3
debug = true
debug-assertions = false
overflow-checks = false
lto = "thin"