Skip to content

Commit

Permalink
chore: remove tokio01::codec (#3095)
Browse files Browse the repository at this point in the history
* chore: remove tokio01::codec

Signed-off-by: Kirill Fomichev <[email protected]>
  • Loading branch information
fanatid authored Jul 23, 2020
1 parent c0732d1 commit f0f58f1
Show file tree
Hide file tree
Showing 36 changed files with 1,375 additions and 1,770 deletions.
108 changes: 19 additions & 89 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 7 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ extended-description-file = "target/debian-extended-description.txt"
[workspace]
members = [
".",
"lib/codec01",
"lib/file-source",
"lib/tracing-limit",
"lib/vector-wasm",
Expand All @@ -37,16 +36,16 @@ members = [
[dependencies]
# Internal libs
codec = { path = "lib/codec" }
codec01 = { path = "lib/codec01" }
file-source = { path = "lib/file-source" }
tracing-limit = { path = "lib/tracing-limit" }

# Tokio / Futures
futures01 = { package = "futures", version = "0.1.25" }
futures = { version = "0.3", default-features = false, features = ["compat", "io-compat"] }
tokio01 = { package = "tokio", version = "0.1.22", features = ["io", "uds", "tcp", "rt-full", "experimental-tracing", "codec", "udp", "sync", "fs"], default-features = false }
tokio01 = { package = "tokio", version = "0.1.22", features = ["io", "tcp", "rt-full", "experimental-tracing", "sync"], default-features = false }
tokio = { version = "0.2.13", features = ["blocking", "fs", "sync", "macros", "test-util", "rt-core", "io-std"] }
tokio-openssl = "0.3.0"
tokio-openssl03 = { package = "tokio-openssl", version = "0.3.0" }
tokio-openssl = "0.4.0"
tokio-retry = "0.2.0"
tokio-signal = "0.2.7"
tokio-compat = { version = "0.1", features = ["rt-full"] }
Expand Down Expand Up @@ -113,7 +112,6 @@ typetag = "0.1"
toml = "0.4"
syslog = "5"
syslog_loose = { version = "0.3.0", optional = true }
tokio-uds = { version = "0.2.5", optional = true }
derive_is_enum_variant = "0.1.1"
leveldb = { git = "https://github.com/timberio/leveldb", optional = true, default-features = false }
db-key = "0.0.5"
Expand Down Expand Up @@ -263,9 +261,9 @@ sources-journald = []
sources-kafka = []
sources-logplex = ["warp", "sources-tls"]
sources-prometheus = []
sources-socket = ["bytesize", "listenfd", "tokio-uds", "sources-tls"]
sources-socket = ["bytesize", "listenfd", "tokio/uds", "tokio-util/udp", "sources-tls"]
sources-splunk_hec = ["bytesize", "warp", "sources-tls"]
sources-statsd = []
sources-statsd = ["tokio-util/udp"]
sources-stdin = ["bytesize"]
sources-syslog = ["sources-socket", "syslog_loose"]
sources-tls = ["sources-http", "sources-logplex", "sources-socket", "sources-splunk_hec"]
Expand Down Expand Up @@ -382,10 +380,10 @@ sinks-loki = ["bytesize"]
sinks-new_relic_logs = ["bytesize", "sinks-http"]
sinks-prometheus = []
sinks-sematext_logs = ["sinks-elasticsearch"]
sinks-socket = ["tokio-uds"]
sinks-socket = ["tokio/uds"]
sinks-papertrail = ["sinks-socket"]
sinks-splunk_hec = ["bytesize"]
sinks-statsd = []
sinks-statsd = ["tokio-util/udp"]
sinks-vector = []
sinks-pulsar = ["pulsar"]

Expand Down
Loading

0 comments on commit f0f58f1

Please sign in to comment.