mirror of
https://github.com/stoatchat/stoatchat.git
synced 2026-07-06 03:06:04 +00:00
* chore(main): release 0.13.6 * chore: update Cargo.lock Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> --------- Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: stoat-release[bot] <245062572+stoat-release[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
47 lines
1.1 KiB
TOML
47 lines
1.1 KiB
TOML
[package]
|
|
name = "revolt-voice-ingress"
|
|
version = "0.13.6"
|
|
license = "AGPL-3.0-or-later"
|
|
edition = "2021"
|
|
publish = false
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
# util
|
|
log = { workspace = true }
|
|
sentry = { workspace = true }
|
|
lru = { workspace = true }
|
|
ulid = { workspace = true }
|
|
redis-kiss = { workspace = true }
|
|
chrono = { workspace = true }
|
|
|
|
# Serde
|
|
serde_json = { workspace = true }
|
|
rmp-serde = { workspace = true }
|
|
serde = { workspace = true }
|
|
|
|
# Http
|
|
rocket = { workspace = true, features = ["json"] }
|
|
rocket_empty = { workspace = true }
|
|
|
|
# Async
|
|
futures = { workspace = true }
|
|
async-std = { workspace = true, features = [
|
|
"tokio1",
|
|
"tokio02",
|
|
"attributes",
|
|
] }
|
|
|
|
# Core
|
|
revolt-result = { workspace = true, features = ["rocket"] }
|
|
revolt-models = { workspace = true }
|
|
revolt-config = { workspace = true }
|
|
revolt-database = { workspace = true, features = ["voice"] }
|
|
revolt-permissions = { workspace = true }
|
|
|
|
# Voice
|
|
livekit-api = { workspace = true }
|
|
livekit-protocol = { workspace = true }
|
|
livekit-runtime = { workspace = true, features = ["tokio"] }
|