Creation
This commit is contained in:
parent
5149a2d7d1
commit
8a93f91e69
19 changed files with 7090 additions and 1 deletions
42
Cargo.toml
Normal file
42
Cargo.toml
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
[package]
|
||||
name = "Omega"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
aes-gcm = "*"
|
||||
async-tungstenite = { version = "0.32.0", features = ["futures-03-sink", "futures-util", "handshake", "__rustls-tls", "async-native-tls", "async-std", "async-std-runtime", "async-tls", "gio", "gio-runtime", "glib", "openssl", "real-async-native-tls", "real-async-tls", "real-native-tls", "real-tokio-native-tls", "real-tokio-openssl", "real-tokio-rustls", "rustls-native-certs", "rustls-pki-types", "tokio", "tokio-native-tls", "tokio-openssl", "tokio-runtime", "tokio-rustls-manual-roots", "tokio-rustls-native-certs", "tokio-rustls-webpki-roots", "url", "verbose-logging", "webpki-roots" ] }
|
||||
axum = "0.8.7"
|
||||
base64 = "0.22.1"
|
||||
bytes = "1.11.0"
|
||||
color-eyre = "0.6.5"
|
||||
dashmap = "6.1.0"
|
||||
dotenv = "0.15.0"
|
||||
futures = "0.3.31"
|
||||
futures-util = "0.3.31"
|
||||
hkdf = "0.12.4"
|
||||
http-body-util = "0.1.3"
|
||||
hyper = { version = "1.8.1", features = ["full"] }
|
||||
hyper-util = "0.1.19"
|
||||
json = "0.12.4"
|
||||
once_cell = "1.21.3"
|
||||
pnet = "0.35.0"
|
||||
rand = "0.8"
|
||||
rand_core = { version = "0.6", features = ["getrandom", "std"] }
|
||||
reqwest = "0.12.28"
|
||||
rustls = "0.23.35"
|
||||
rustls-pemfile = "2.2.0"
|
||||
sha1 = "0.10.6"
|
||||
sha2 = "0.10.9"
|
||||
sqlx = { version = "0.8.6", features = ["mysql", "runtime-async-std"] }
|
||||
sysinfo = "0.37.2"
|
||||
tokio = { version = "*", features = ["full"] }
|
||||
tokio-rustls = "0.26.4"
|
||||
tokio-tungstenite = "0.28.0"
|
||||
tokio-util = { version = "*", features = ["full"] }
|
||||
tower = "0.5.2"
|
||||
tungstenite = "0.28.0"
|
||||
uuid = { version = "1.19.0", features = ["v4"] }
|
||||
walkdir = "2.5.0"
|
||||
x448 = "0.6.0"
|
||||
zip = "6.0.0"
|
||||
Loading…
Reference in a new issue