-
Notifications
You must be signed in to change notification settings - Fork 12
/
Cargo.toml
44 lines (39 loc) · 1.11 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
[package]
name = "inspektor"
version = "0.1.0"
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "1.19.2", features = ["full"] }
byteorder = "1.4.3"
bytes = "1.1.0"
anyhow = "1.0.58"
thiserror = "1.0.31"
log = "0.4.17"
env_logger = "0.9.0"
tokio-openssl = "0.6.3"
openssl = "0.10.41"
clap = "3.2.8"
md-5 = "0.10.1"
grpcio = { version = "0.10.3", features = ["prost-codec", "openssl"] }
protobuf = { version = "3.1.0", features = ["with-bytes"] }
futures = "0.3.21"
burrego = {git = "https://github.com/kubewarden/policy-evaluator"}
serde_json = "1.0.82"
sqlparser = {git = "https://github.com/poonai/sqlparser-rs", branch = "poonai/tablefunction"}
tokio-postgres = "0.7.6"
serde = "1.0.138"
serde_yaml = "0.8.25"
postgres-protocol = "0.6.4"
aws-config = "0.15.0"
aws-sdk-cloudwatchlogs = "0.15.0"
async-trait = "0.1.56"
thread_local = "1.1.4"
openssl-probe = "0.1.5"
lazy_static = "1.4.0"
prost = "0.10"
# Only necessary if using Protobuf well-known types:
prost-types = "0.10"
tonic = "0.7.2"
[build-dependencies]
tonic-build = "0.7.2"