-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
66 lines (63 loc) · 2.03 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
[package]
name = "fpd"
version = "2.27.0"
rust-version = "1.76"
edition = "2018"
description = "The Fiberplane Daemon enables secure communication between Fiberplane and your data sources using WebAssembly-based providers."
authors = ["Fiberplane <[email protected]>"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/fiberplane/fpd"
[dependencies]
anyhow = "1.0.44"
bytes = "1.6"
async-channel = "2.2.0"
clap = { version = "4.1.4", features = ["derive", "env", "cargo", "help"] }
ctrlc = "3.2.1"
directories = "4.0.1"
duct = "0.13"
fiberplane = { version = "1.0.0-beta.14", features = [
"base64uuid-creation",
"models",
"provider-bindings",
"provider-runtime",
] }
flate2 = "1"
futures = "0.3.17"
http = "1.1"
http-body-util = "0.1.1"
hyper = { version = "1.2", features = ["full"] }
hyper-util = { version = "0.1.3", features = ["full"] }
octocrab = { version = "0.35", default-features = false, features = ["rustls"] }
once_cell = "1.15.0"
prometheus = { version = "0.13", default-features = false }
reqwest = { version = "0.12", default-features = false, features = [
"rustls-tls-native-roots", "rustls-tls"
] }
rmp-serde = "1.1.1"
secrecy = { version = "0.8.0", features = ["serde", "bytes"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.78"
serde_yaml = "0.9"
tar = "0.4"
thiserror = "1.0.38"
time = "0.3.14"
tokio = { version = "1.18.5", features = ["full"] }
tokio-tungstenite = { version = "0.21", features = [
"rustls-tls-native-roots",
] }
tracing = "0.1"
tracing-subscriber = { version = "0.3.16", features = ["env-filter", "json"] }
url = "2.2.2"
zip = "0.6"
[dev-dependencies]
httpmock = "0.7.0"
test-log = { version = "0.2.11", default-features = false, features = [
"trace",
] }
tokio = { version = "1.18.5", features = ["full", "test-util"] }
test-env-log = { version = "0.2", default-features = false, features = [
"trace",
] }
tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] }
[patch.crates-io]
fiberplane = { git = "https://github.com/fiberplane/fiberplane", branch = "main" }