session-open-group-server/Cargo.toml

26 lines
542 B
TOML
Raw Normal View History

2021-03-05 05:13:31 +01:00
[package]
name = "session-open-group-server"
version = "1.0.0"
2021-03-09 00:28:53 +01:00
authors = ["Niels Andriesse <niels@oxen.io>"]
2021-03-05 05:13:31 +01:00
edition = "2018"
[dependencies]
2021-03-12 05:11:12 +01:00
aes-gcm = "0.8"
2021-03-15 03:59:54 +01:00
base64 = "0.13"
2021-03-12 05:11:12 +01:00
curve25519-parser = "0.2"
hex = "0.4"
hmac = "0.10"
http = "0.2"
lazy_static = "1.4"
2021-03-15 03:59:54 +01:00
rand = "0.8"
2021-03-11 00:50:17 +01:00
regex = "1.4"
rusqlite = { version = "0.24", features = ["bundled"] }
2021-03-12 05:11:12 +01:00
r2d2_sqlite = "0.17"
r2d2 = "0.8"
2021-03-05 05:13:31 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-03-12 05:11:12 +01:00
sha2 = "0.9"
tokio = { version = "1.3", features = ["full"] }
2021-03-05 05:13:31 +01:00
warp = "0.3"
2021-03-12 05:11:12 +01:00
x25519-dalek = "1.1"