-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
28 lines (26 loc) · 746 Bytes
/
Cargo.toml
File metadata and controls
28 lines (26 loc) · 746 Bytes
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
[package]
name = "graphql-rs"
version = "0.1.0"
authors = ["Gary Moore <littlebunch@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "1.0.0"
diesel = { version = "1.4.5", features = ["postgres","chrono","r2d2"] }
diesel_full_text_search = "1.0.1"
chrono ={version= "0.4.13", features=["serde"]}
clap = {version="2",features = ["yaml"]}
csv = "1.1"
dotenv = "0.15.0"
env_logger = "0.7.1"
futures = "0.1"
juniper = "0.14.2"
regex = "1.4.2"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
[dev-dependencies]
assert_cmd = "1.0.1"
predicates = "1.0.5"
[features]
pg=[]