28 lines
776 B
TOML
28 lines
776 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" |