forked from tremor-rs/tremor-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
117 lines (96 loc) · 2.61 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
106
107
108
109
110
111
112
113
114
115
116
117
[package]
name = "tremor-runtime"
version = "0.8.0"
description = "Tremor Runtime"
authors = ["The Tremor Team"]
edition = "2018"
license = "Apache-2.0"
[workspace]
members = [
"tremor-api",
"tremor-influx",
"tremor-pipeline",
"tremor-query",
"tremor-script",
"tremor-server",
"tremor-tool",
]
[profile.release]
debug = true
lto = true
opt-level = 3
[dependencies]
async-std = {version = "1.5", features = ["unstable"]}
async-trait = "0.1"
base64 = "0.12"
bytes = "0.5"
byteorder = "1"
chrono = "0.4"
elastic = "0.21.0-pre.5"
error-chain="0.12"
futures = "0.3"
hashbrown = { version = "0.7", features = ["serde"] }
hostname = "0.3"
log4rs = "0.12"
mio = {version = "0.7", features = ["udp", "tcp", "os-poll"]}
rand = "0.7"
regex = "1.3"
rental = "0.5"
surf = "=2.0.0-alpha.2"
http-types = "1.2"
rmp-serde = "0.14"
serde = "1"
serde_yaml = "0.8"
simd-json = {version = "0.3", features = ["known-key"]}
threadpool = "1"
tremor-pipeline = { path = "tremor-pipeline" }
url = "2.1"
async-tungstenite = { version = "0.4.2", features = ["async-std-runtime"] }
log = "0.4"
serde_derive = "1"
lazy_static = "1"
halfbrown = "0.1"
libflate = "1.0"
snap = "1"
lz4 = "1.23.1"
# will be in new graph
tremor-script = { path = "tremor-script" }
tremor-influx = { path = "tremor-influx" }
indexmap = { version = "1", features = [ "serde-1" ] }
crossbeam-channel = "0.4"
memmap = { version = "0.7.0" }
tempfile = { version = "3.1" }
# blaster / blackhole
xz2 = "0.1"
hdrhistogram = "7"
# postgres
postgres = { version = "0.17.3", features = ["with-serde_json-1", "with-chrono-0_4"] }
postgres-protocol = "0.5"
tokio-postgres = "0.5"
# kafka. cmake is the encouraged way to build this and also the one that works on windows.
rdkafka = { version = "0.23", features = ["cmake-build"] }
# crononome
cron = "0.6.0"
#Google cloud stuff
google-storage1 = { version = "1", optional = true }
google-pubsub1 = { version = "1", optional = true }
hyper-rustls = { version = "0.20", optional = true } # chan't update this because of google
yup-oauth2 = { version = "4", optional = true } # can't update this because of google
hyper = { version = "0.13", optional = true } # chan't update this because of google
# logstash grok patterns
grok = "1"
[dependencies.tungstenite]
version = "0.10"
default-features = false
[dev-dependencies]
matches = "0.1"
# criterion = "0.2"
pretty_assertions = "0.6.1"
regex = "1"
env_logger = "0.7"
[features]
default = []
# Experimental suport for google cloud APIs
gpc = [ "google-storage1", "google-pubsub1", "hyper-rustls", "yup-oauth2", "hyper" ]
[patch.crates-io]
# waiting for https://github.com/http-rs/tide/pull/408