-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (28 loc) · 905 Bytes
/
Copy pathCargo.toml
File metadata and controls
31 lines (28 loc) · 905 Bytes
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
[package]
name = "ip-kvm"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[profile.release]
codegen-units = 1
strip = true
opt-level = "z" # Optimize for size.
lto = true
#panic = "abort"
[dependencies]
usb-otg = { path = "usb-otg" }
util = { path = "util" }
tokio = { version = "1", features = ["macros", "signal", "rt-multi-thread"] }
axum = { version = "0.7", features = ["ws"] }
axum-extra = { version = "0.9", features = ["typed-header"] }
tower-http = { version = "0.5", features = ["fs", "trace"] }
futures = "0.3"
once_cell = "1"
hyper = { version = "1" }
serde_json = { version = "1" }
serde = { version = "1", features = ["derive"] }
anyhow = "1"
hyper-util = { version = "0.1", features = ["client", "client-legacy"] }
pretty_env_logger = "0.5"
log = "0.4"
clap = { version = "4", features = ["derive"] }