-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
55 lines (46 loc) · 1.3 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[package]
name = "picolauncher"
version = "0.1.0"
edition = "2021"
license = "MIT OR Apache-2.0"
authors = ["Daniel Liu <[email protected]>"]
description = ""
repository = ""
[features]
[dependencies]
notify = "6.1"
notify-debouncer-full = "0.3"
image = "0.25"
ndarray = "0.16"
strum = "0.26"
strum_macros = "0.26"
pino_deref = "0.1.1"
clap = { version = "4.5", features = ["derive"] }
lazy_static = "1.5"
regex = "1.10.5"
anyhow = "1.0.86"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
toml = "0.8"
log = "0.4"
env_logger = "0.11"
network-manager = { version = "0.13.3", git = "https://github.com/balena-io-modules/network-manager" }
dbus = "0.9"
bluer = {version="0.17.3", features=["full"]}
# temp dependencies for scraper functionality
tokio = { version = "1.37", features = ["full"] }
reqwest = { version = "0.11", features = ["blocking", "native-tls-vendored"] }
headless_chrome = "1"
urlencoding = "2.1"
scraper = "0.19"
futures = "0.3"
[target.'cfg(target_os = "linux")'.dependencies]
nix = { version = "0.29", features = ["fs", "process", "signal"] }
[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["namedpipeapi", "handleapi", "winbase"] }
[[bin]]
name = "picolauncher"
path = "src/main.rs"
[[bin]]
name = "p8util"
path = "src/cli.rs"