chorus/Cargo.toml

80 lines
2.2 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."
2024-01-19 21:50:42 +01:00
version = "0.14.0"
license = "MPL-2.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]
2024-01-19 19:45:34 +01:00
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-12-30 11:42:44 +01:00
client = []
voice = ["voice_udp", "voice_gateway"]
voice_udp = ["dep:discortp", "dep:crypto_secretbox"]
voice_gateway = []
2023-05-26 16:09:55 +02:00
2023-04-04 16:42:20 +02:00
[dependencies]
2024-01-11 19:36:36 +01:00
tokio = { version = "1.35.1", features = ["macros", "sync"] }
serde = { version = "1.0.195", features = ["derive", "rc"] }
serde_json = { version = "1.0.111", features = ["raw_value"] }
serde-aux = "4.3.1"
serde_with = "3.4.0"
serde_repr = "0.1.18"
reqwest = { features = ["multipart", "json"], version = "0.11.23" }
2024-01-11 19:36:36 +01:00
url = "2.5.0"
chrono = { version = "0.4.31", features = ["serde"] }
regex = "1.10.2"
2023-04-25 17:21:27 +02:00
custom_error = "1.9.2"
2024-01-11 19:36:36 +01:00
futures-util = "0.3.30"
http = "0.2.11"
base64 = "0.21.7"
bitflags = { version = "2.4.1", features = ["serde"] }
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"
2024-01-11 19:36:36 +01:00
poem = { version = "1.3.59", optional = true }
thiserror = "1.0.56"
jsonwebtoken = "8.3.0"
log = "0.4.20"
2024-01-11 19:36:36 +01:00
async-trait = "0.1.77"
chorus-macros = "0.2.0"
2024-01-11 19:36:36 +01:00
sqlx = { version = "0.7.3", features = [
2023-08-02 20:17:36 +02:00
"mysql",
"sqlite",
"json",
"chrono",
"ipnetwork",
"runtime-tokio-native-tls",
"any",
], optional = true }
2023-11-12 14:59:28 +01:00
discortp = { version = "0.5.0", optional = true, features = ["rtp", "discord", "demux"] }
2023-12-16 13:46:29 +01:00
crypto_secretbox = {version = "0.1.1", optional = true}
rand = "0.8.5"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
2024-01-11 19:36:36 +01:00
rustls = "0.21.10"
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"
getrandom = { version = "0.2.12" }
[target.'cfg(target_arch = "wasm32")'.dependencies]
2024-01-11 19:36:36 +01:00
getrandom = { version = "0.2.12", features = ["js"] }
ws_stream_wasm = "0.7.4"
2024-01-11 19:36:36 +01:00
wasm-bindgen-futures = "0.4.39"
2024-01-19 14:55:23 +01:00
wasmtimer = "0.2.0"
[dev-dependencies]
2023-05-25 21:11:08 +02:00
lazy_static = "1.4.0"
2024-01-11 19:36:36 +01:00
wasm-bindgen-test = "0.3.39"
wasm-bindgen = "0.2.89"