-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (34 loc) · 1.07 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
[workspace]
resolver = "2"
members = ["bin/*", "libs/*", "plugins/*"]
exclude = ["bin/npm", "tests/test-server"]
[workspace.dependencies]
tokio = "1.37.0"
futures = "0.3.30"
serde = { version = "1.0.197", features = ["derive"] }
serde_json = { version = "1.0.115" }
tracing = "0.1.40"
http = "0.2.12"
http-body = "0.4.6"
bytes = "1.6.0"
async-trait = "0.1.80"
anyhow = "1.0.82"
reqwest = "0.11.27"
thiserror = "1.0.58"
reqwest-middleware = "0.2.5"
tracing-subscriber = "0.3.18"
base64 = "0.21.7"
schemars = "0.8.16"
graphql-parser = { git = "https://github.com/graphql-rust/graphql-parser.git", rev = "f75d96f1e026d0fb993944793916c1cd0597f44c" }
vrl = { git = "https://github.com/dotansimha/vrl.git", rev = "d59b2f66727d3c345b4202b94265c580dfd0f0e9", default-features = false, features = [
"string_path",
"compiler",
"value",
"stdlib",
] }
minitrace = "0.6.4"
[profile.release.package.conductor-cf-worker]
strip = true
codegen-units = 1
[patch.crates-io]
graphql-parser = { git = "https://github.com/graphql-rust/graphql-parser.git", rev = "f75d96f1e026d0fb993944793916c1cd0597f44c" }