2021-04-06 19:42:24 +02:00
|
|
|
[package]
|
|
|
|
name = "noise-server"
|
2021-06-08 15:17:11 +02:00
|
|
|
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]
|
2021-04-19 22:16:08 +02:00
|
|
|
juniper = "^0.15"
|
|
|
|
juniper_warp = "^0.6"
|
2021-06-07 16:38:15 +02:00
|
|
|
juniper-from-schema = { git = "https://github.com/davidpdrsn/juniper-from-schema" }
|
2021-06-28 16:35:18 +02:00
|
|
|
sqlx = { version = "^0.5", features = ["runtime-tokio-native-tls", "uuid", "chrono", "macros", "offline"] }
|
2021-06-07 17:56:48 +02:00
|
|
|
warp = { version = "^0.3", default-features = false, features = ["compression", "tls"] }
|
2021-06-08 15:18:56 +02:00
|
|
|
structopt = { version = "^0.3", features = ["wrap_help"] }
|
2021-06-08 15:57:04 +02:00
|
|
|
toml = "^0.5"
|
|
|
|
serde = { version = "^1.0", features = ["derive"] }
|
2021-06-28 15:45:36 +02:00
|
|
|
tokio = { version = "^1.0", features = ["rt-multi-thread", "macros", "sync"] }
|
2021-06-07 17:56:48 +02:00
|
|
|
|
|
|
|
[features]
|
|
|
|
default = ["sqlite"]
|
|
|
|
sqlite = ["sqlx/sqlite"]
|