-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
48 lines (37 loc) · 1.09 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
[package]
name = "drstd"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [ "dlibc" ]
[build-dependencies]
cbindgen = "0.24.3"
cc = "1.0.25"
[dependencies]
cbitset = "0.1.0"
lazy_static = { version = "1.4.0", default-features = false, features = ["spin_no_std"] }
memoffset = "0.5.1"
rand = { version = "0.5.5", default-features = false }
memchr = { version = "2.2.0", default-features = false }
plain = "0.2"
unicode-width = "0.1"
hashbrown = { version = "0.14", default-features = false }
cfg-if = { version = "1.0" }
dlibc = { path = "./dlibc" }
[dependencies.goblin]
version = "0.0.21"
default-features = false
features = ["elf32", "elf64", "endian_fd"]
#[target.'cfg(target_os = "linux")'.dependencies]
#sc = "0.2.3"
[target.'cfg(target_os = "dragonos")'.dependencies]
# Development
dragonos-dsc = { git = "https://git.mirrors.dragonos.org/DragonOS-Community/dragonos-dsc.git", rev = "aa61cb0109" }
[features]
default = []
trace = []
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"