1[package] 2name = "btstack" 3version = "0.1.0" 4edition = "2018" 5 6[dependencies] 7bt_common = { path = "../../common" } 8bt_topshim = { path = "../../topshim" } 9bt_shim = { path = "../../shim" } 10bt_utils = { path = "../utils" } 11 12btif_macros = { path = "btif_macros" } 13 14dbus = "0.9.2" 15env_logger = "0.8.3" 16itertools = "0.10.5" 17lazy_static = "1.4" 18log = "0.4.14" 19log-panics = "2.1.0" 20nix = "0.23" 21num-derive = "0.3" 22num-traits = "0.2" 23rand = { version = "0.8.3", features = ["small_rng"] } 24serde_json = "1.0" 25syslog = "6" 26tempfile = "3.10" 27tokio = { version = "1", features = ['bytes', 'fs', 'io-util', 'libc', 'macros', 'mio', 'net', 'num_cpus', 'rt', 'rt-multi-thread', 'sync', 'time', 'tokio-macros'] } 28 29[lib] 30path = "src/lib.rs" 31 32[build-dependencies] 33pkg-config = "0.3.19" 34