forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 963 Bytes
/
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
[package]
name = "k8s-e2e-tests"
version = "0.1.0"
authors = ["Vector Contributors <vector@datadoghq.com>"]
edition = "2021"
description = "End-to-end tests of Vector in the Kubernetes environment"
publish = false
license = "MPL-2.0"
[dependencies]
futures = "0.3"
k8s-openapi = { version = "0.16.0", default-features = false, features = ["v1_19"] }
k8s-test-framework = { version = "0.1", path = "../k8s-test-framework" }
regex = "1"
reqwest = { version = "0.11.22", features = ["json"] }
serde_json = "1"
tokio = { version = "1.33.0", features = ["full"] }
indoc = "2.0.4"
env_logger = "0.10"
tracing = { version = "0.1", features = ["log"] }
rand = "0.8"
[features]
e2e-tests = []
[[test]]
name = "vector-agent"
required-features = ["e2e-tests"]
[[test]]
name = "vector-aggregator"
required-features = ["e2e-tests"]
[[test]]
name = "vector-dd-agent-aggregator"
required-features = ["e2e-tests"]
[[test]]
name = "vector"
required-features = ["e2e-tests"]