icalingua-python-bot/ica-rs/Cargo.toml

32 lines
754 B
TOML
Raw Normal View History

[package]
name = "ica-rs"
2024-02-21 21:50:52 +08:00
version = "0.4.2"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ed25519 = "2.2.3"
2024-02-18 21:27:36 +08:00
ed25519-dalek = "2.1.1"
hex = "0.4.3"
2024-02-20 20:11:25 +08:00
blake3 = "1.5.0"
2024-02-21 21:42:27 +08:00
rust_socketio = { version = "0.4.4", features = ["async"]}
serde = { version = "1.0", features = ["derive"] }
2024-02-18 21:27:36 +08:00
serde_json = "1.0"
chrono = "0.4.34"
2024-02-18 21:27:36 +08:00
toml = "0.8.10"
2024-01-24 14:41:08 +08:00
colored = "2.1.0"
2024-02-21 21:42:27 +08:00
tokio = { version = "1.0", features = ["full"] }
futures-util = "0.3.30"
2024-02-10 12:18:09 +08:00
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["time"] }
[dependencies.pyo3]
version = "0.20.2"
[patch.crates-io]
2024-02-10 12:31:32 +08:00
rust_socketio = { git = "https://github.com/shenjackyuanjie/rust-socketio.git", branch = "mult_payload" }