1[package] 2name = "dadk" 3authors = [ 4 "longjin <longjin@DragonOS.org>", 5 "chikejian <chikejian@DragonOS.org>", 6 "xuzihao <xuzihao@DragonOS.org>" 7] 8 9version = "0.1.11" 10edition = "2021" 11description = "DragonOS Application Development Kit\nDragonOS应用开发工具" 12license = "GPL-2.0-only" 13repository = "https://github.com/DragonOS-Community/DADK.git" 14readme = "README.md" 15 16 17[[bin]] 18name = "dadk" 19path = "src/main.rs" 20doc = true 21 22# 这个target与上面的内容一样, 23# 只是为了方便在开发,测试时使用(不会跟正式版本的dadk冲突) 24[[bin]] 25name = "dadk-insiders" 26path = "src/main.rs" 27doc = true 28 29 30[dependencies] 31anyhow = { version = "1.0.90", features = ["std", "backtrace"] } 32clap = { version = "4.5.20", features = ["derive"] } 33dadk-config = { path = "../dadk-config" } 34dadk-user = { path = "../dadk-user" } 35derive_builder = "0.20.0" 36env_logger = "0.11.5" 37log = "0.4.22" 38