vapore/lib/Cargo.toml

31 lines
829 B
TOML
Raw Normal View History

2024-08-23 05:07:29 +00:00
[package]
2024-09-05 00:10:51 +00:00
name = "vapore"
2024-08-23 05:07:29 +00:00
edition = "2021"
2024-08-25 03:51:35 +00:00
version.workspace = true
2024-08-23 05:07:29 +00:00
[dependencies]
2024-08-25 22:03:30 +00:00
async-tungstenite = { version = "0.27.0", features = ["tokio-rustls-native-certs"] }
2024-09-06 00:35:24 +00:00
base64 = "0.22.1"
2024-09-10 01:50:47 +00:00
bitflags.workspace = true
2024-08-25 22:03:30 +00:00
color-eyre.workspace = true
2024-08-27 22:59:24 +00:00
flate2 = "1.0.33"
2024-08-25 22:03:30 +00:00
futures = "0.3.30"
2024-09-06 00:35:24 +00:00
hex = "0.4.3"
2024-08-25 22:03:30 +00:00
keyvalues-serde.workspace = true
2024-08-23 05:07:29 +00:00
log.workspace = true
2024-09-10 01:50:47 +00:00
num_enum.workspace = true
2024-08-25 22:03:30 +00:00
protobuf.workspace = true
2024-08-26 04:18:16 +00:00
rand = "0.8.5"
2024-08-25 22:03:30 +00:00
reqwest = { version = "0.12", features = ["rustls-tls-native-roots"], default-features = false}
2024-09-04 23:17:26 +00:00
rsa = "0.9.6"
2024-08-25 22:03:30 +00:00
serde = { version = "1.0.209", features = ["derive"] }
2024-09-05 02:52:13 +00:00
snafu = "0.8.4"
2024-08-27 22:59:24 +00:00
tokio = { version = "1.39", features = ["rt", "rt-multi-thread", "macros", "time"]}
2024-08-25 22:03:30 +00:00
vapore-proto.path = "../proto"
2024-09-10 01:50:47 +00:00
vapore-struct.path = "../struct"
2024-09-05 00:10:51 +00:00
[dev-dependencies]
dialoguer = "0.11.0"
2024-09-05 00:10:51 +00:00
env_logger.workspace = true
qrcode = "0.14.1"