openbmclapi-rs/Cargo.toml

40 lines
916 B
TOML
Raw Normal View History

2024-02-08 23:59:36 +08:00
workspace = { members = ["tests/socket-test"] }
2023-05-28 23:20:23 +08:00
[package]
name = "openbmclapi_rs"
version = "0.1.0"
edition = "2021"
2024-01-26 01:05:52 +08:00
publish = false
2023-05-28 23:20:23 +08:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
2024-01-26 00:22:23 +08:00
[features]
2024-01-29 22:37:05 +08:00
default = ["local_test"]
local_test = []
2024-01-26 00:22:23 +08:00
2023-05-28 23:20:23 +08:00
[dependencies]
reqwest = { version = "0.11.23", features = ["json"] }
2024-01-26 01:05:52 +08:00
axum = "0.7.4"
tokio = { version = "1.35.1", features = ["full"] }
futures-util = "0.3.30"
2024-02-10 12:31:42 +08:00
rust_socketio = { version = "0.4.4", features = ["async"]}
2024-01-26 01:05:52 +08:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.112"
toml = "0.8.8"
2024-01-27 00:33:53 +08:00
apache-avro = "0.16.0"
2024-01-26 01:05:52 +08:00
2024-01-26 00:22:23 +08:00
md-5 = "0.10.6"
sha1 = "0.10.6"
zstd = "0.13.0"
2024-01-29 23:35:08 +08:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }
2024-02-06 21:10:30 +08:00
chrono = "0.4.33"
2024-02-10 12:31:42 +08:00
base64 = "0.21.7"
[patch.crates-io]
rust_socketio = { git = "https://github.com/shenjackyuanjie/rust-socketio.git", branch = "mult_payload" }