-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
30 lines (28 loc) · 856 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "spacex_graphql_rust"
version = "0.1.0"
authors = ["Adam <a_martin15@hotmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "3"
dotenv = "0.15.0"
log = "0.4.*"
env_logger = "0.8"
futures = { version = "0.3.*" }
tokio = {version = "0.2.*", features = ["full"] }
tokio-postgres = { version = "0.5", features = ["with-uuid-0_8"] }
juniper = "0.15.7"
juniper_actix = "0.4.0"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
actix-files = "0.3"
actix-session = "0.4"
actix-utils = "2"
actix = "0.11.1"
awc = {version = "2.0.3", features=["rustls"]}
diesel = { version = "1.4.6", features = ["postgres", "chrono", "numeric","64-column-tables", "r2d2"]}
chrono = "0.4"
async-trait = "0.1.51"
uuid = { version = "0.8", features = ["v4"] }