socket-bot/ica-rs/Cargo.toml
2024-03-15 12:27:00 +08:00

44 lines
1.1 KiB
TOML

[package]
name = "ica-rs"
version = "0.5.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["ica"]
ica = ["dep:ed25519", "dep:ed25519-dalek", "dep:hex", "dep:rust_socketio"]
matrix = ["dep:matrix-sdk", "dep:url"]
[dependencies]
# matrix
url = { version = "2.5.0", optional = true }
matrix-sdk = { version = "0.7.1", optional = true }
# ica
ed25519 = { version = "2.2.3", optional = true }
ed25519-dalek = { version = "2.1.1", optional = true }
hex = { version = "0.4.3", optional = true }
rust_socketio = { version = "0.4.4", features = ["async"], optional = true }
# data
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4.35"
toml = "0.8.11"
colored = "2.1.0"
# runtime
tokio = { version = "1.36", features = ["full"] }
futures-util = "0.3.30"
pyo3 = "0.20.3"
anyhow = { version = "1.0.81", features = ["backtrace"] }
# async 这玩意以后在搞
# pyo3-async = "0.3.2"
# pyo3-asyncio = { version = "0.20.0", features = ["attributes", "tokio-runtime"] }
# log
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }