1[package] 2name = "manager_service" 3version = "0.0.1" 4edition = "2018" 5 6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 7 8[dependencies] 9 10# bt deps 11bt_common = { path = "../../common" } 12 13# external deps 14dbus = "0.9.2" 15dbus-tokio = "0.7.3" 16dbus-crossroads = "0.3.0" 17inotify = "*" 18nix = "*" 19tokio = { version = "1.0", features = ["fs", "macros", "rt-multi-thread", "sync"] } 20 21[[bin]] 22name = "btmanagerd" 23