-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
29 lines (24 loc) · 786 Bytes
/
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
[package]
name = "solox"
version = "0.0.1"
authors = ["jonlamb-gh <[email protected]>"]
[dependencies]
libsel4-sys = {git = "https://github.com/jonlamb-gh/libsel4-sys.git", branch = "devel"}
rlibc = "1.0"
sel4twinkle-alloc = {git = "https://github.com/jonlamb-gh/sel4twinkle-alloc-rs.git", branch = "master"}
# tracked as a submodule currently so I can apply patches for SoloX platform support
[patch."https://github.com/jonlamb-gh/libsel4-sys.git"]
libsel4-sys = {path = "libsel4-sys"}
[dependencies.wee_alloc]
version = "0.4"
features = ["static_array_backend"]
optional = true
[dependencies.proptest]
version = "0.8.5"
default-features = false
features = ["alloc", "nightly"]
optional = true
[features]
default = ["alloc"]
alloc = ["wee_alloc"]
test = ["alloc", "proptest"]