-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
36 lines (29 loc) · 703 Bytes
/
Cargo.toml
File metadata and controls
36 lines (29 loc) · 703 Bytes
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
[package]
name = "smolvm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
object = "0.31"
clap = { version = "4.3", features = ["derive"] }
env_logger = "0.10"
log = "0.4"
zerocopy = "0.6"
bitflags = "2.3"
static_assertions = "1.1"
field-offset = "0.3"
memmap2 = "0.7"
iced-x86 = "1.19"
bad64 = "0.6"
[target.'cfg(target_arch = "x86_64")'.dependencies]
raw-cpuid = "11.0"
[target.'cfg(target_os = "linux")'.dependencies]
libc = "0.2"
kvm-bindings = "0.6"
nix = "0.26"
[target.'cfg(target_os = "macos")'.dependencies]
ahv = "0.2"
[dev-dependencies]
byteorder = "1.4"
[profile.release]
debug = true