41 lines
1 KiB
TOML
41 lines
1 KiB
TOML
[package]
|
|
name = "omikron"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
mtp = { git = "https://git.methanium.net/Methanium/mtp.git", features = [
|
|
"host",
|
|
"client",
|
|
"crypto",
|
|
"files",
|
|
] }
|
|
# Needed directly for `ConnectionHandle`, which `mtp-client` does not re-export.
|
|
# Pulled in transitively already via `mtp`, so this just names the same crate/commit.
|
|
mtp-transport = { git = "https://git.methanium.net/Methanium/mtp.git" }
|
|
|
|
ansi_term = "*"
|
|
uuid = { version = "*", features = ["v4"] }
|
|
base64 = "0.22.1"
|
|
dashmap = "*"
|
|
futures = "*"
|
|
once_cell = "1.21.4"
|
|
rand = "0.8"
|
|
rustls = { version = "0.23.40", default-features = false, features = [
|
|
"std",
|
|
"tls12",
|
|
"aws-lc-rs",
|
|
"prefer-post-quantum",
|
|
] }
|
|
tokio = { version = "*", features = ["full"] }
|
|
log = "0.4"
|
|
dotenv = "0.15.0"
|
|
strum = "0.28.0"
|
|
strum_macros = "0.28.0"
|
|
livekit-api = { version = "0.5.0", features = ["native-tls"] }
|
|
livekit-protocol = "0.7.8"
|
|
thiserror = "2.0.18"
|
|
hickory-resolver = "0.25.2"
|
|
serde = "1.0.228"
|
|
serde_json = "1.0.149"
|
|
json = "0.12.4"
|