-
Notifications
You must be signed in to change notification settings - Fork 4
/
Cargo.toml
40 lines (34 loc) · 1.09 KB
/
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
31
32
33
34
35
36
37
38
39
40
[package]
name = "async-graphql-reverse"
version = "0.6.1"
authors = ["tacogips <[email protected]>"]
edition = "2018"
# TODO(tacogips) is excluding apparantly not working when cargo test?
exclude = ["examples"]
[[bin]]
name = "async-graphql-reverse"
path = "src/bin/main.rs"
[dependencies]
anyhow = "1.0"
async-graphql = "6.0.1"
async-graphql-parser = "6.0.1"
clap = { version = "3.1.0", features = ["derive"] }
env_logger = "0.8"
# TODO(tacogips) lazy_static would be deprecated after rust 1.70
# https://github.com/rust-lang-nursery/lazy-static.rs/issues/214
lazy_static = "1.4"
log = "0.4"
structopt = "0.3"
strum = { version = "0.21.0", features = ["derive"] }
derive_macro_tool = { path = "derive_macro" }
proc-macro2 = { version = "1.0", default-features = false }
quote = "1.0"
syn = { version = "1.0", features = ["extra-traits", "clone-impls"] }
heck = "0.3"
paste = "1.0"
toml = "0.5"
serde = { version = "1.0", features = ["derive"] }
[dev-dependencies]
axum = { version = "0.6.0", features = ["headers"] }
tokio = { version = "1.8", features = ["macros", "rt-multi-thread"] }
async-graphql-axum = "6.0.1"