1[package]
2name = "manager_service"
3version = "0.6.0"
4edition = "2018"
5build = "build.rs"
6
7# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
8
9[dependencies]
10bt_common = { path = "../../common" }
11bt_topshim = { path = "../../topshim" }
12bt_utils = { path = "../utils" }
13btstack = { path = "../stack" }
14
15# external deps
16base64 = "0.13.0"
17clap = "2.33.3"
18configparser = "3.0.0"
19dbus = "0.9.2"
20dbus-tokio = "0.7.6"
21dbus-crossroads = "0.4.0"
22dbus_projection = { path = "../dbus_projection" }
23dbus_macros = { path = "../dbus_projection/dbus_macros" }
24env_logger = "0.8.3"
25futures = "0.3.13"
26glob = "0.3.0"
27inotify = "0.9"
28log = "0.4.14"
29nix = "0.23"
30num-traits = "0.2"
31protobuf = "2.0"
32regex = "1.5"
33serde_json = "1.0"
34syslog = "6"
35tokio = { version = "1.0", features = ["fs", "macros", "rt-multi-thread", "sync"] }
36libc = "0.2"
37
38[build-dependencies]
39pkg-config = "0.3.19"
40protoc-rust = "2.0"
41
42[[bin]]
43name = "btmanagerd"
44path = "src/main.rs"
45