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

34 lines
673 B
TOML
Raw Normal View History

[package]
name = "ica-rs"
version = "0.1.0"
edition = "2021"
2024-01-24 14:29:31 +08:00
build = "build.rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ed25519 = "2.2.3"
ed25519-dalek = "2.1.0"
hex = "0.4.3"
rust_socketio = "0.4.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.108"
2023-12-24 17:27:15 +08:00
toml = "0.8.8"
2024-01-24 14:41:08 +08:00
colored = "2.1.0"
# inline-python = "0.12.0"
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"
# features = ["auto-initialize"]
[patch.crates-io]
2024-02-07 12:52:33 +08:00
rust_socketio = { path = "D:/githubs/rust-socketio/socketio" }
2024-01-24 14:29:31 +08:00
[build-dependencies]