-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
40 lines (36 loc) · 1018 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
[package]
name = "blendr"
version = "1.3.3"
edition = "2021"
description = "The hacker's BLE (bluetooth low energy) browser terminal app"
license = "BSD-3-Clause"
authors = ["Dmitriy Kovalenko <[email protected]>"]
repository = "https://github.com/dmtrKovalenko/blendr"
[[bin]]
name = "blendr"
path = "src/main.rs"
doc = false
[dependencies]
ansi-to-tui = "3.0.0"
btleplug = "0.11.5"
byteorder = "1.4.3"
chrono = "0.4.26"
clap = { version = "4.3.4", features = ["derive"] }
copypasta = "0.8.2"
crossterm = "0.25.0"
futures = "0.3.28"
hexyl = "0.13.0"
lazy_static = "1.4.0"
regex = "1.8.4"
tokio = { version = "1.28", features = ["full", "tracing"] }
tracing = "0.1.40"
tracing-appender = "0.2.3"
tracing-subscriber = "0.3.18"
tui = { package = "ratatui", version = "0.28.1" }
uuid = "1.3.4"
[build-dependencies]
clap_mangen = "0.2.12"
clap = { version = "4.3.4", features = ["derive"] }
uuid = "1.3.4"
[target.'cfg(target_os = "linux")'.dependencies]
dbus = { version = "0.9.7", features = ["vendored"] }