forked from DragonOS-Community/DADK
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
51 lines (43 loc) · 1.22 KB
/
Copy pathCargo.toml
File metadata and controls
51 lines (43 loc) · 1.22 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
[package]
name = "dadk"
authors = [
"longjin <longjin@DragonOS.org>",
"chikejian <chikejian@DragonOS.org>",
"xuzihao <xuzihao@DragonOS.org>"
]
version = "0.5.1"
edition = "2021"
description = "DragonOS Application Development Kit\nDragonOS应用开发工具"
license = "GPL-2.0-only"
repository = "https://github.com/DragonOS-Community/DADK.git"
readme = "README.md"
[[bin]]
name = "dadk"
path = "src/main.rs"
# 这个target与上面的内容一样,
# 只是为了方便在开发,测试时使用(不会跟正式版本的dadk冲突)
[[bin]]
name = "dadk-insiders"
path = "src/main.rs"
required-features = ["insiders"]
[features]
insiders = []
[dependencies]
anyhow = { version = "1.0.100", features = ["std", "backtrace"] }
clap = { version = "4.5.20", features = ["derive"] }
crossbeam = "0.8.4"
dadk-config = { version = "0.5.0", path = "../dadk-config" }
dadk-user = { version = "0.5.0", path = "../dadk-user" }
derive_builder = "0.20.0"
env_logger = { workspace = true }
humantime = "2.1.0"
indicatif = "0.17.9"
inferno = "0.12.0"
lazy_static = "1.4.0"
log = { workspace = true }
rayon = "1.10.0"
regex = "1.9.1"
serde = { workspace = true }
serde_json = { workspace = true }
[dev-dependencies]
tempfile = "3.13.0"