-
Notifications
You must be signed in to change notification settings - Fork 1.9k
feat(codecs): Add syslog encoder #23777
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
1ddf6af
7407f7b
c9aacd9
d03c87f
0288a80
1049ebd
3cdc1b4
3001b67
f8be8d9
5360287
38d0d61
7ef97fb
34e735d
2ac3da2
7ba64be
ed202bb
c295b7d
c87ea7b
078cfee
47e5d6a
12c8777
be32c25
e097db4
bbfb951
c000b1d
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,8 @@ apache-avro = { version = "0.16.0", default-features = false } | |
bytes.workspace = true | ||
chrono.workspace = true | ||
csv-core = { version = "0.1.12", default-features = false } | ||
derivative.workspace = true | ||
derivative = { version = "2", default-features = false } | ||
derive_more = { version = "0.99", optional = true } | ||
dyn-clone = { version = "1", default-features = false } | ||
flate2.workspace = true | ||
influxdb-line-protocol = { version = "2", default-features = false } | ||
|
@@ -24,13 +25,15 @@ ordered-float.workspace = true | |
prost.workspace = true | ||
prost-reflect.workspace = true | ||
rand.workspace = true | ||
regex.workspace = true | ||
regex = { version = "1.11.1", default-features = false, features = ["std", "perf"] } | ||
serde.workspace = true | ||
serde_with = { version = "3.14.0", default-features = false, features = ["std", "macros", "chrono_0_4"] } | ||
serde_json.workspace = true | ||
serde-aux = { version = "4.5", optional = true } | ||
smallvec = { version = "1", default-features = false, features = ["union"] } | ||
snafu.workspace = true | ||
syslog_loose = { version = "0.23", default-features = false, optional = true } | ||
strum = { version = "0.26", features = ["derive"], optional = true } | ||
syslog_loose = { version = "0.22", default-features = false, optional = true } | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Did you intentionally downgrade here? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. No, i think it was mistake i will fix |
||
tokio-util = { version = "0.7", default-features = false, features = ["codec"] } | ||
tokio = { workspace = true, features = ["full"] } | ||
tracing.workspace = true | ||
|
@@ -39,6 +42,7 @@ vector-common = { path = "../vector-common", default-features = false } | |
vector-config = { path = "../vector-config", default-features = false } | ||
vector-config-macros = { path = "../vector-config-macros", default-features = false } | ||
vector-core = { path = "../vector-core", default-features = false, features = ["vrl"] } | ||
toml = "0.9.4" | ||
|
||
[dev-dependencies] | ||
futures.workspace = true | ||
|
@@ -52,4 +56,4 @@ uuid.workspace = true | |
vrl.workspace = true | ||
|
||
[features] | ||
syslog = ["dep:syslog_loose"] | ||
syslog = ["dep:syslog_loose", "dep:strum", "dep:derive_more", "dep:serde-aux"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's use workspace dependencies if they are used in >1 places.