forked from vectordotdev/vector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 771 Bytes
/
Copy pathCargo.toml
File metadata and controls
43 lines (37 loc) · 771 Bytes
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
[package]
name = "shared"
version = "0.1.0"
authors = ["Vector Contributors <vector@timber.io>"]
edition = "2018"
publish = false
license = "MPL-2.0"
[dependencies]
bytes = { version = "0.5.6", optional = true }
chrono = { version = "0.4", optional = true }
chrono-tz = "0.5.3"
derivative = "2.1.3"
nom = { version = "6", optional = true }
serde = { version = "1.0.117", optional = true }
snafu = { version = "0.6", optional = true }
tracing = { version = "0.1", optional = true }
[features]
default = [
"aws_cloudwatch_logs_subscription",
"btreemap",
"conversion",
"tokenize",
]
aws_cloudwatch_logs_subscription = [
"chrono/serde",
"serde/derive",
]
btreemap = []
conversion = [
"bytes",
"chrono",
"snafu",
"tracing",
]
tokenize = [
"nom",
]