32 lines
1020 B
TOML
32 lines
1020 B
TOML
[package]
|
|
name = "ox_speak_server"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[lib]
|
|
# The `_lib` suffix may seem redundant but it is necessary
|
|
# to make the lib name unique and wouldn't conflict with the bin name.
|
|
# This seems to be only an issue on Windows, see https://github.com/rust-lang/cargo/issues/8519
|
|
name = "ox_speak_server_lib"
|
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[dependencies]
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
parking_lot = "0.12"
|
|
tokio = { version = "1.46", features = ["full"] }
|
|
strum = {version = "0.27", features = ["derive"] }
|
|
uuid = {version = "1.17", features = ["v4", "serde"] }
|
|
event-listener = "5.4"
|
|
dashmap = "6.1"
|
|
bytes = "1.10"
|
|
arc-swap = "1.7"
|
|
crossbeam-utils = "0.8"
|
|
kanal = "0.1"
|
|
axum = { version = "0.8", features = ["ws", "default"] }
|
|
chrono = {version = "0.4", features = ["serde"]}
|
|
sqlx = { version = "0.8", features = ["runtime-tokio-rustls", "chrono", "uuid", "any", "sqlite", "postgres", "mysql" ] }
|
|
dotenvy = "0.15" |