tenebrous-dicebot/api/Cargo.toml

23 lines
733 B
TOML
Raw Normal View History

[package]
name = "tenebrous-api"
version = "0.1.0"
authors = ["projectmoon <projectmoon@agnos.is>"]
edition = "2018"
[dependencies]
log = "0.4"
tracing-subscriber = "0.2"
tonic = { version = "0.4" }
prost = "0.7"
2021-06-10 15:25:44 +00:00
thiserror = "1.0"
substring = "1.4"
2021-06-09 15:19:43 +00:00
jsonwebtoken = "7.2"
chrono = "0.4"
serde = {version = "1.0", features = ["derive"] }
2021-06-11 22:34:03 +00:00
serde_json = {version = "1.0" }
tenebrous-rpc = { path = "../rpc" }
juniper = { git = "https://github.com/graphql-rust/juniper", branch = "master" }
juniper_rocket_async = { git = "https://github.com/graphql-rust/juniper", branch = "master" }
2021-06-14 20:22:11 +00:00
rocket = { version = "0.5.0-rc.1", features = ["json", "secrets"] }
2021-06-08 14:38:21 +00:00
rocket_cors = { git = "https://github.com/lawliet89/rocket_cors", branch = "master" }