2023-12-11 00:00:01 +08:00
|
|
|
[package]
|
|
|
|
name = "ica-rs"
|
2024-03-12 00:47:00 +08:00
|
|
|
version = "0.5.0"
|
2023-12-11 00:00:01 +08:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2024-03-13 01:17:50 +08:00
|
|
|
[features]
|
|
|
|
default = ["ica", "matrix"]
|
|
|
|
ica = ["dep:ed25519", "dep:ed25519-dalek", "dep:hex", "dep:rust_socketio"]
|
|
|
|
matrix = ["dep:ruma"]
|
|
|
|
|
2023-12-11 00:00:01 +08:00
|
|
|
[dependencies]
|
2024-01-24 18:14:50 +08:00
|
|
|
|
2024-03-13 01:17:50 +08:00
|
|
|
# matrix
|
|
|
|
ruma = { version = "0.9.4", features = [
|
|
|
|
"client-api-c",
|
|
|
|
"client-ext-client-api",
|
|
|
|
"client-reqwest",
|
|
|
|
"rand",
|
|
|
|
], 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
|
2024-01-24 18:14:50 +08:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2024-02-18 21:27:36 +08:00
|
|
|
serde_json = "1.0"
|
2024-02-18 22:43:54 +08:00
|
|
|
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-01-24 18:14:50 +08:00
|
|
|
|
2024-03-13 01:17:50 +08:00
|
|
|
# runtime
|
2024-02-21 21:42:27 +08:00
|
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
|
|
futures-util = "0.3.30"
|
2024-02-25 18:20:03 +08:00
|
|
|
pyo3 = "0.20.3"
|
2024-03-13 01:17:50 +08:00
|
|
|
# async 这玩意以后在搞
|
2024-02-22 02:40:39 +08:00
|
|
|
# pyo3-async = "0.3.2"
|
2024-03-12 00:47:00 +08:00
|
|
|
# pyo3-asyncio = { version = "0.20.0", features = ["attributes", "tokio-runtime"] }
|
2024-02-21 21:42:27 +08:00
|
|
|
|
2024-03-13 01:17:50 +08:00
|
|
|
# log
|
2024-02-10 12:18:09 +08:00
|
|
|
tracing = "0.1.40"
|
|
|
|
tracing-subscriber = { version = "0.3.18", features = ["time"] }
|