-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
53 lines (47 loc) · 1.17 KB
/
Cargo.toml
File metadata and controls
53 lines (47 loc) · 1.17 KB
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
[workspace]
resolver = "3"
members = [
"crates/cli",
"crates/core",
"crates/daemon",
"crates/engine",
"crates/mgmt",
"crates/testutil",
"crates/wasm",
"tests",
]
[workspace.package]
version = "0.10.3"
authors = ["Canmi <t@canmi.icu>"]
edition = "2024"
homepage = "https://vane.canmi.app"
license = "MIT"
repository = "https://github.com/canmi21/vane"
rust-version = "1.95"
[workspace.lints.rust]
unsafe_code = "deny"
unreachable_pub = "warn"
[workspace.lints.clippy]
all = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
[workspace.dependencies]
async-trait = "0.1"
vane-core = { path = "crates/core", version = "0.10.3" }
vane-engine = { path = "crates/engine", version = "0.10.3" }
vane-mgmt = { path = "crates/mgmt", version = "0.10.3" }
vane-testutil = { path = "crates/testutil", version = "0.10.3" }
vane-wasm = { path = "crates/wasm", version = "0.10.3" }
wasmtime = { version = "44.0.1", features = ["component-model", "async", "cranelift"] }
[profile.release]
opt-level = "z"
lto = true
codegen-units = 1
strip = true
panic = "abort"
[profile.dev]
opt-level = 0
codegen-units = 256
lto = false
strip = false
debug = "full"
panic = "unwind"