Initial commit.
This commit is contained in:
25
mlc-server/Cargo.toml
Normal file
25
mlc-server/Cargo.toml
Normal file
@ -0,0 +1,25 @@
|
||||
[package]
|
||||
name = "mlc-server"
|
||||
version = "0.1.0"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
mls-rs.workspace = true
|
||||
mls-rs-core.workspace = true
|
||||
mls-rs-crypto-openssl.workspace = true
|
||||
anyhow.workspace = true
|
||||
reqwest.workspace = true
|
||||
thiserror.workspace = true
|
||||
serde_json.workspace = true
|
||||
tracing.workspace = true
|
||||
tracing-subscriber.workspace = true
|
||||
|
||||
clap = { version = "^4", features = ["derive", "env"] }
|
||||
tokio = { version = "1.44.1", features = ["full"] }
|
||||
sqlx = { version = "0.8.3", features = ["sqlite", "runtime-tokio"] }
|
||||
dotenv = "0.15.0"
|
||||
axum = { version = "0.8.1", features = ["ws"] }
|
||||
rustc-hash = { version = "2.1.1", features = ["rand"] }
|
||||
uuid = { version = "1.16.0", features = ["v4"] }
|
||||
futures = "0.3.31"
|
||||
|
Reference in New Issue
Block a user