session-open-group-server/Cargo.toml

22 lines
456 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-11 04:20:36 +01:00
aes-gcm = "0.8.0"
2021-03-12 02:39:35 +01:00
curve25519-parser = "0.2.0"
2021-03-11 04:20:36 +01:00
hex = "0.4.3"
2021-03-12 03:21:13 +01:00
hmac = "0.10.1"
2021-03-11 00:50:17 +01:00
regex = "1.4"
2021-03-05 06:44:07 +01:00
rusqlite = "0.24"
2021-03-09 00:28:53 +01:00
r2d2_sqlite = "0.17.0"
r2d2 = "0.8.9"
2021-03-05 05:13:31 +01:00
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2021-03-12 03:21:13 +01:00
sha2 = "0.9.3"
2021-03-05 05:13:31 +01:00
tokio = { version = "1", features = ["full"] }
warp = "0.3"
x25519-dalek = "1.1.0"