27 lines
641 B
TOML
27 lines
641 B
TOML
[package]
|
|
name = "proxy-engine"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
[[bin]]
|
|
name = "proxy-engine"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
codec-lib = { path = "../codec-lib" }
|
|
sip-proto = { path = "../sip-proto" }
|
|
nnnoiseless = "0.5"
|
|
tokio = { version = "1", features = ["full"] }
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
base64 = "0.22"
|
|
regex-lite = "0.1"
|
|
webrtc = "0.8"
|
|
rand = "0.8"
|
|
hound = "3.5"
|
|
kokoro-tts = { version = "0.3", default-features = false }
|
|
ort = { version = "=2.0.0-rc.11", default-features = false, features = [
|
|
"std", "download-binaries", "copy-dylibs", "ndarray",
|
|
"tls-native-vendored"
|
|
] }
|