• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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"
19nix = "0.23"
20num-derive = "0.3"
21num-traits = "0.2"
22rand = { version = "0.8.3", features = ["small_rng"] }
23serde_json = "1.0"
24syslog = "6"
25tokio = { version = "1", features = ['bytes', 'fs', 'io-util', 'libc', 'macros', 'memchr', 'mio', 'net', 'num_cpus', 'rt', 'rt-multi-thread', 'sync', 'time', 'tokio-macros'] }
26
27[lib]
28path = "src/lib.rs"
29
30[build-dependencies]
31pkg-config = "0.3.19"
32