Cleanup
This commit is contained in:
parent
2784cc030b
commit
4b5a9fdf7d
2 changed files with 18 additions and 628 deletions
26
Cargo.toml
26
Cargo.toml
|
|
@ -7,47 +7,33 @@ edition = "2024"
|
|||
epsilon-core = { git = "https://github.com/Tensamin/Epsilon.git", package = "epsilon-core" }
|
||||
epsilon-native = { git = "https://github.com/Tensamin/Epsilon.git", package = "epsilon-native" }
|
||||
|
||||
actix = "0.13.5"
|
||||
actix-rt = "2.11.0"
|
||||
actix-web = { version = "4.12.1", features = ["rustls-0_23"] }
|
||||
actix-web-actors = "4.3.1"
|
||||
aes-gcm = "*"
|
||||
ansi_term = "0.12.1"
|
||||
anyhow = "1.0.101"
|
||||
async-trait = "0.1.89"
|
||||
base64 = "0.22.1"
|
||||
bytes = "1.11.1"
|
||||
color-eyre = "0.6.5"
|
||||
dashmap = "6.1.0"
|
||||
dotenv = "0.15.0"
|
||||
futures = "0.3.31"
|
||||
futures-util = "0.3.31"
|
||||
hex = "0.4.3"
|
||||
hkdf = "0.12.4"
|
||||
http-body-util = "0.1.3"
|
||||
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 = { version = "0.13.2" }
|
||||
rustls = { version = "0.23.37", default-features = false, features = ["std", "tls12", "aws-lc-rs", "prefer-post-quantum"] }
|
||||
quinn = { version = "0.11.9", default-features = false, features = ["runtime-tokio", "rustls-aws-lc-rs"] }
|
||||
rustls = { version = "0.23.37", default-features = false, features = [
|
||||
"std",
|
||||
"tls12",
|
||||
"aws-lc-rs",
|
||||
"prefer-post-quantum",
|
||||
] }
|
||||
rustls-pemfile = "2.2.0"
|
||||
sha1 = "0.10.6"
|
||||
sha2 = "0.10.9"
|
||||
sqlx = { version = "0.8.6", features = ["mysql", "runtime-async-std"] }
|
||||
strum = "0.27.2"
|
||||
strum_macros = "0.27.2"
|
||||
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"
|
||||
thiserror = "2.0.18"
|
||||
|
|
|
|||
Loading…
Reference in a new issue