-
Notifications
You must be signed in to change notification settings - Fork 27
Expand file tree
/
Copy pathCargo.toml
More file actions
87 lines (80 loc) · 2.33 KB
/
Copy pathCargo.toml
File metadata and controls
87 lines (80 loc) · 2.33 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
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
[workspace]
members = [
"crates/rvm-types",
"crates/rvm-hal",
"crates/rvm-cap",
"crates/rvm-witness",
"crates/rvm-proof",
"crates/rvm-partition",
"crates/rvm-sched",
"crates/rvm-memory",
"crates/rvm-coherence",
"crates/rvm-boot",
"crates/rvm-wasm",
"crates/rvm-rvf",
"crates/rvm-security",
"crates/rvm-host",
"crates/rvm-launch",
"crates/rvm-gpu",
"crates/rvm-kernel",
"tests",
"benches",
]
resolver = "2"
exclude = [
"cuda-wasm",
"ruvector",
"rudevolution",
]
[workspace.package]
version = "0.1.1"
edition = "2021"
rust-version = "1.77"
license = "MIT OR Apache-2.0"
authors = ["RuVector Contributors"]
repository = "https://github.com/ruvnet/rvm"
description = "RVM: Coherence-native microhypervisor for edge computing and multi-agent systems"
[workspace.dependencies]
# Internal dependencies
rvm-types = { path = "crates/rvm-types" }
rvm-hal = { path = "crates/rvm-hal" }
rvm-cap = { path = "crates/rvm-cap" }
rvm-witness = { path = "crates/rvm-witness" }
rvm-proof = { path = "crates/rvm-proof" }
rvm-partition = { path = "crates/rvm-partition" }
rvm-sched = { path = "crates/rvm-sched" }
rvm-memory = { path = "crates/rvm-memory" }
rvm-coherence = { path = "crates/rvm-coherence" }
rvm-boot = { path = "crates/rvm-boot" }
rvm-wasm = { path = "crates/rvm-wasm" }
rvm-rvf = { path = "crates/rvm-rvf" }
rvm-host = { path = "crates/rvm-host" }
rvm-launch = { path = "crates/rvm-launch" }
rvm-security = { path = "crates/rvm-security" }
rvm-kernel = { path = "crates/rvm-kernel" }
rvm-gpu = { path = "crates/rvm-gpu" }
# External dependencies
lz4_flex = { version = "0.11", default-features = false }
hmac = { version = "0.12", default-features = false }
sha2 = { version = "0.10", default-features = false }
sha3 = { version = "0.10", default-features = false }
subtle = { version = "2.6", default-features = false }
xxhash-rust = { version = "0.8", default-features = false, features = ["xxh3"] }
spin = { version = "0.9", default-features = false }
bitflags = { version = "2", default-features = false }
# Testing
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1.5"
[profile.release]
opt-level = 3
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[profile.bench]
inherits = "release"
debug = true
[profile.dev]
opt-level = 0
debug = true
panic = "abort"