chorus/Cargo.toml

76 lines
2.0 KiB
TOML
Raw Normal View History

2023-04-04 16:42:20 +02:00
[package]
name = "chorus"
description = "A library for interacting with multiple Spacebar-compatible Instances at once."
2023-11-14 16:02:51 +01:00
version = "0.11.0"
2023-08-27 01:00:41 +02:00
license = "AGPL-3.0"
2023-04-04 16:42:20 +02:00
edition = "2021"
repository = "https://github.com/polyphony-chat/chorus"
readme = "README.md"
keywords = ["spacebar", "discord", "polyphony"]
2023-08-27 12:49:58 +02:00
website = ["https://discord.com/invite/m3FpcapGDD"]
2023-04-04 16:42:20 +02:00
2023-05-26 16:09:55 +02:00
[features]
default = ["client", "rt-multi-thread"]
2023-11-13 12:57:17 +01:00
backend = ["dep:poem", "dep:sqlx"]
rt-multi-thread = ["tokio/rt-multi-thread"]
rt = ["tokio/rt"]
2023-05-26 16:09:55 +02:00
client = []
2023-04-04 16:42:20 +02:00
[dependencies]
tokio = { version = "1.34.0", features = ["macros", "sync"] }
2023-08-27 00:51:52 +02:00
serde = { version = "1.0.188", features = ["derive", "rc"] }
serde_json = { version = "1.0.105", features = ["raw_value"] }
serde-aux = "4.2.0"
2023-08-27 00:51:52 +02:00
serde_with = "3.3.0"
serde_repr = "0.1.16"
reqwest = { git = "https://github.com/bitfl0wer/reqwest.git", branch = "wasm-headers", features = [
"multipart",
"json",
] }
2023-07-17 20:06:57 +02:00
url = "2.4.0"
2023-08-02 20:17:36 +02:00
chrono = { version = "0.4.26", features = ["serde"] }
2023-08-27 00:51:52 +02:00
regex = "1.9.4"
2023-04-25 17:21:27 +02:00
custom_error = "1.9.2"
2023-05-11 00:06:13 +02:00
futures-util = "0.3.28"
http = "0.2.9"
2023-08-27 00:51:52 +02:00
base64 = "0.21.3"
bitflags = { version = "2.4.0", features = ["serde"] }
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"
2023-08-27 00:51:52 +02:00
poem = { version = "1.3.57", optional = true }
thiserror = "1.0.47"
jsonwebtoken = "8.3.0"
log = "0.4.20"
async-trait = "0.1.73"
chorus-macros = "0.2.0"
sqlx = { version = "0.7.1", features = [
"mysql",
"sqlite",
"json",
"chrono",
"ipnetwork",
"runtime-tokio-native-tls",
"any",
], optional = true }
2023-11-13 19:20:38 +01:00
safina-timer = "0.1.11"
2023-11-13 15:38:20 +01:00
rand = "0.8.5"
ws_stream_wasm = "0.7.4"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rustls = "0.21.8"
rustls-native-certs = "0.6.3"
tokio-tungstenite = { version = "0.20.1", features = [
"rustls-tls-native-roots",
"rustls-native-certs",
] }
native-tls = "0.2.11"
hostname = "0.3.1"
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2.11", features = ["js"] }
tokio-tungstenite = { version = "0.20.1", default-features = false }
[dev-dependencies]
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"