123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- [package]
- name = "dadk"
- authors = [
- "longjin <[email protected]>",
- "chikejian <[email protected]>",
- "xuzihao <[email protected]>"
- ]
- version = "0.2.0"
- 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.90", features = ["std", "backtrace"] }
- clap = { version = "4.5.20", features = ["derive"] }
- crossbeam = "0.8.4"
- dadk-config = { version = "0.2.0", path = "../dadk-config" }
- dadk-user = { version = "0.2.0", path = "../dadk-user" }
- derive_builder = "0.20.0"
- env_logger = "0.11.5"
- humantime = "2.1.0"
- indicatif = "0.17.9"
- inferno = "0.12.0"
- lazy_static = "1.4.0"
- log = "0.4.22"
- rayon = "1.10.0"
- regex = "1.9.1"
- serde = { version = "1.0.160", features = ["serde_derive"] }
- serde_json = "1.0.96"
- [dev-dependencies]
- tempfile = "3.13.0"
|