project: first attempt of reimplemantation of caesar with websockets
This commit is contained in:
parent
acfc0a51c7
commit
11531b7d50
19 changed files with 3820 additions and 1066 deletions
53
Cargo.toml
53
Cargo.toml
|
|
@ -1,30 +1,45 @@
|
|||
[package]
|
||||
name = "caesar"
|
||||
name = "caesar_test"
|
||||
version = "0.0.1"
|
||||
edition = "2021"
|
||||
authors = ["Manuel Keidel", "Patryk Hegenberg", "Krzysztof Stankiewicz"]
|
||||
build = "src/build.rs"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
[[bin]]
|
||||
name = "caesar"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
reqwest = { version = "0.12.3", features = ["blocking", "json"] }
|
||||
hyper = { version = "1", features = ["full"] }
|
||||
tokio = { version = "1", features = ["full"] }
|
||||
http-body-util = "0.1"
|
||||
hyper-util = { version = "0.1", features = ["full"] }
|
||||
futures-util = "0.3"
|
||||
tungstenite = "0.20.1"
|
||||
tokio = { version = "1.28.1", features = ["full"] }
|
||||
tokio-tungstenite = { version = "0.20.1" }
|
||||
serde_json = { version = "1.0" }
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
axum = "0.7.5"
|
||||
rand = "0.8.5"
|
||||
uuid = { version = "1.3.2", features = ["v4"] }
|
||||
tracing = "0.1.40"
|
||||
tracing-subscriber = {version = "0.3.18", features = ["env-filter"]}
|
||||
env_logger = "0.11.3"
|
||||
log = "0.4.21"
|
||||
dotenv = { version = "0.15.0", features = ["clap"] }
|
||||
tower-http = {version = "0.5.2", features = ["fs"]}
|
||||
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
|
||||
dotenv = { version = "0.15.0", features = ["clap", "cli"] }
|
||||
clap = { version = "4.5.4", features = ["derive"] }
|
||||
flume = { git = "https://github.com/zesterer/flume", rev = "80d19c49" }
|
||||
prost = "0.11.9"
|
||||
prost-types = "0.11.9"
|
||||
base64 = "0.21.2"
|
||||
url = "2.4.0"
|
||||
p256 = { version = "0.13.2", features = ["ecdh"] }
|
||||
hmac = "0.12.1"
|
||||
sha2 = "0.10.7"
|
||||
rand = { version = "0.8.5", features = ["getrandom"] }
|
||||
aes-gcm = "0.10.3"
|
||||
sanitize-filename = "0.4.0"
|
||||
qr2term = "0.3.1"
|
||||
axum = { version = "0.7.5", features = ["ws"] }
|
||||
tower-http = { version = "0.5.2", features = ["fs", "trace"] }
|
||||
axum-client-ip = "0.6.0"
|
||||
lazy_static = "1.4.0"
|
||||
local-ip-address = "0.6.1"
|
||||
sha2 = "0.10.8"
|
||||
hex = "0.4.3"
|
||||
axum-extra = { version = "0.9.3", features = ["typed-header"] }
|
||||
headers = "0.4"
|
||||
tower = { version = "0.4", features = ["util"] }
|
||||
|
||||
[build-dependencies]
|
||||
prost-build = "0.5"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue