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] 9bt_common = { path = "../../common" } 10bt_topshim = { path = "../../topshim" } 11bt_utils = { path = "../utils" } 12btstack = { path = "../stack" } 13 14# external deps 15base64 = "0.13.0" 16clap = "2.33.3" 17configparser = "3.0.0" 18dbus = "0.9.2" 19dbus-tokio = "0.7.6" 20dbus-crossroads = "0.4.0" 21dbus_projection = { path = "../dbus_projection" } 22dbus_macros = { path = "../dbus_projection/dbus_macros" } 23env_logger = "0.8.3" 24futures = "0.3.13" 25glob = "0.3.0" 26inotify = "0.9" 27log = "0.4.14" 28nix = "0.23" 29num-traits = "0.2" 30protobuf = "2.0" 31regex = "1.5" 32serde_json = "1.0" 33syslog = "6" 34tokio = { version = "1.0", features = ["fs", "macros", "rt-multi-thread", "sync"] } 35 36[build-dependencies] 37pkg-config = "0.3.19" 38protoc-rust = "2.0" 39 40[[bin]] 41name = "btmanagerd" 42path = "src/main.rs" 43build = "build.rs" 44