session-open-group-server/Cargo.toml

48 lines
1.1 KiB
TOML
Raw Normal View History

2021-03-05 05:13:31 +01:00
[package]
name = "session-open-group-server"
2021-07-14 02:09:09 +02:00
version = "0.1.8"
2021-03-09 00:28:53 +01:00
authors = ["Niels Andriesse <niels@oxen.io>"]
2021-03-05 05:13:31 +01:00
edition = "2018"
2021-04-09 06:01:27 +02:00
description = "The Session open group server. Use this to run a custom open group."
license = "MIT"
[package.metadata.deb]
systemd-units = { enable = true, start = true }
maintainer-scripts = "debian/"
2021-04-22 02:54:48 +02:00
depends = "libssl1.1, openssl"
2021-04-22 05:43:51 +02:00
section = "net"
2021-03-05 05:13:31 +01:00
[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-17 00:10:26 +01:00
chrono = "0.4"
2021-03-12 05:11:12 +01:00
curve25519-parser = "0.2"
2021-03-17 01:15:06 +01:00
futures = "0.3"
2021-03-12 05:11:12 +01:00
hex = "0.4"
hmac = "0.10"
http = "0.2"
lazy_static = "1.4"
log = "0.4"
log4rs = "1.0"
2021-05-28 05:55:51 +02:00
octocrab = "0.9"
2021-03-15 03:59:54 +01:00
rand = "0.8"
2021-03-16 06:25:59 +01:00
rand_core = "0.5"
regex = "1"
reqwest = { version = "0.11", features = ["json"] }
rusqlite = { version = "0.24", features = ["bundled"] }
2021-06-11 02:05:00 +02:00
rusqlite_migration = "0.4"
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"
2021-03-23 23:12:54 +01:00
structopt = "0.3"
2021-03-12 05:11:12 +01:00
tokio = { version = "1.3", features = ["full"] }
2021-03-23 23:12:54 +01:00
url = "2.2.1"
2021-03-15 06:02:56 +01:00
warp = { version = "0.3", features = ["tls"] }
2021-03-12 05:11:12 +01:00
x25519-dalek = "1.1"
parking_lot = "0.11.1"
2021-03-16 05:12:29 +01:00
[dev-dependencies]
tokio-test = "*"