forked from DragonOS-Community/drstd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
51 lines (40 loc) · 1.11 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
49
50
51
[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
#[lib]
#name = "drstd"
#crate-type = ["staticlib"]
#[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://github.com/DragonOS-Community/dsc.git", rev = "d6e4fd8" }
[features]
default = []
trace = []
[profile.dev]
panic = "abort"
[profile.release]
panic = "abort"