34 lines
825 B
TOML
Executable file
34 lines
825 B
TOML
Executable file
[package]
|
|
name = "omega"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
mtp = { git = "https://git.methanium.net/Methanium/mtp.git", features = [
|
|
"crypto",
|
|
"files",
|
|
"raw",
|
|
"web-server",
|
|
] }
|
|
|
|
ansi_term = "0.12.1"
|
|
base64 = "0.23.1"
|
|
bytes = "1"
|
|
dashmap = "6.2.1"
|
|
dotenv = "0.15.0"
|
|
http = "1"
|
|
once_cell = "1.21.4"
|
|
rand = "0.10.2"
|
|
rustls = { version = "0.23.43", default-features = false, features = [
|
|
"std",
|
|
"tls12",
|
|
"aws-lc-rs",
|
|
"prefer-post-quantum",
|
|
] }
|
|
sqlx = { version = "0.9.0", features = ["mysql", "runtime-tokio", "migrate"] }
|
|
tokio = { version = "*", features = ["full"] }
|
|
tokio-util = { version = "0.7.19", features = ["rt"] }
|
|
uuid = { version = "1.26.0", features = ["v4", "v7"] }
|
|
thiserror = "2.0.20"
|
|
serde = { version = "1.0.229", features = ["derive"] }
|
|
serde_json = "1.0.151"
|