iota/Cargo.toml
Alex Emmet 0d07ddf851 Fixes Patches Creation & More
Working with files / Paths fixed

Websocket PingPongs (There is no data behind this just PingPong)

Storing User Profiles correctly

Added necessary dependencies and initial code support for: - X.509
certificate handling via x509/pkcs8 crates - Key generation and crypto
operations via x448/sha2 - Structured hex encoding and base64 encoding
2025-09-23 20:26:48 +00:00

37 lines
897 B
TOML

[package]
name = "Iota"
version = "0.1.0"
edition = "2024"
[dependencies]
json = "*"
axum = "*"
futures-util = "*"
rustls = { version = "*", default-features = false, features = ["ring"] }
tokio-tungstenite = { version = "0.23.1", default-features = false, features = [
"connect",
"rustls-tls-webpki-roots",
"tokio-rustls"
] }
cmake = "*"
tokio = { version = "*", features = ["full"] }
uuid = { version = "*", features = ["v4"] }
walkdir = "2.5.0"
sysinfo = "*"
serde = { version = "1.0.219", features = ["derive"] }
ratatui = { version = "*", features = ["all-widgets"]}
bytes = "*"
crossterm = "*"
color-eyre = "*"
sys-info = "*"
rand = "0.8"
rand_core = { version = "0.6", features = ["getrandom", "std"] }
base64 = "0.22.1"
once_cell = "1.21.3"
reqwest = "0.12.23"
x448 = { version = "*" }
hex = "*"
x509 = "*"
sha2 = "*"
der = "*"
pkcs8 = { version = "*", features = ["alloc"] }