noise-server/Cargo.toml

23 lines
869 B
TOML
Raw Normal View History

2021-04-06 19:42:24 +02:00
[package]
name = "noise-server"
description = "A server for Noise networks"
2021-04-06 19:42:24 +02:00
version = "0.1.0"
authors = ["EliasSchriefer <elischriefer@gmail.com>", "Erik Foris <erikfor@outlook.de>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
juniper = "^0.15"
juniper_warp = "^0.6"
juniper-from-schema = { git = "https://github.com/davidpdrsn/juniper-from-schema" }
sqlx = { version = "^0.5", features = ["runtime-tokio-native-tls", "uuid", "chrono"] }
2021-06-07 17:56:48 +02:00
warp = { version = "^0.3", default-features = false, features = ["compression", "tls"] }
structopt = { version = "^0.3", features = ["wrap_help"] }
toml = "^0.5"
serde = { version = "^1.0", features = ["derive"] }
2021-06-28 15:24:49 +02:00
tokio = { version = "^1.0", features = ["rt-multi-thread", "macros", ] }
2021-06-07 17:56:48 +02:00
[features]
default = ["sqlite"]
sqlite = ["sqlx/sqlite"]