forked from tailcallhq/tailcall
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
105 lines (95 loc) · 2.38 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
[package]
name = "tailcall"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "tailcall"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.77"
derive_setters = "0.1.6"
thiserror = "1.0.52"
mimalloc = { version = "0.1.39", default-features = false }
serde_json = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_yaml = "0.9"
serde_urlencoded = "0.7.1"
url = { version = "2", features = ["serde"] }
sha2 = { version = "0.10", features = ["std"] }
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = [
"json",
"rustls-tls"
], default-features = false }
hyper = { version = "0.14", features = ["full"], default-features = false }
async-graphql = { version = "6.0.11", features = [
"dynamic-schema",
"dataloader",
"apollo_tracing"
] }
async-graphql-value = "6.0.11"
base64 = "0.21"
indexmap = "2.1"
once_cell = "1.19.0"
mini-v8 = { version = "0.4.1", optional = true }
clap = { version = "4.4.12", features = ["derive"] }
colored = "2"
regex = "1.10.2"
http-cache-reqwest = { version = "0.12.0", features = [
"manager-moka"
], default-features = false }
reqwest-middleware = "0.2.4"
async-trait = "0.1.75"
serde_path_to_error = "0.1.14"
moka = { version = "0.12.2", default-features = false, features = ["future"] }
cache_control = "0.2.0"
nom = "7.1.3"
exitcode = "1.1.2"
resource = "0.5.0"
inquire = "0.6.2"
log = "0.4.20"
env_logger = "0.10.1"
stripmargin = "0.1.1"
ring = "0.17.7"
num_cpus = "1.16.0"
hyper-rustls = "0.24.2"
rustls = "0.21.9"
rustls-pemfile = "1.0.4"
fnv = "1.0.7"
futures-channel = { version = "0.3.30" }
futures-timer = { version = "3.0.2" }
futures-util = { version = "0.3.30" }
lru = { version = "0.12.1" }
webbrowser = { version = "0.8.12", features = ["hardened", "disable-wsl"] }
ttl_cache = "0.5.1"
prettytable-rs = "^0.10"
protox = "0.5.1"
prost-reflect = { version = "0.12.0", features = ["serde"] }
prost = "0.12.3"
[dev-dependencies]
criterion = "0.5.1"
httpmock = "0.6"
pretty_assertions = "1.4.0"
stripmargin = "0.1.1"
[profile.release]
opt-level = 3
codegen-units = 1
panic = 'abort'
lto = 'thin'
debug = false
incremental = false
overflow-checks = false
[features]
unsafe-js = ["dep:mini-v8"]
[[bench]]
name = "json_like_bench"
harness = false
[[bench]]
name = "request_template_bench"
harness = false
[[bench]]
name = "data_loader_bench"
harness = false
[[bench]]
name = "impl_path_string_for_evaluation_context"
harness = false