Skip to content

Commit

Permalink
chore(deps): remove some unused deps
Browse files Browse the repository at this point in the history
  • Loading branch information
pront committed Dec 11, 2024
1 parent 0b801eb commit fc70024
Show file tree
Hide file tree
Showing 13 changed files with 2 additions and 82 deletions.
47 changes: 0 additions & 47 deletions Cargo.lock

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

2 changes: 0 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,6 @@ itertools = { version = "0.13.0", default-features = false, optional = false, fe
k8s-openapi = { version = "0.18.0", default-features = false, features = ["api", "v1_26"], optional = true }
kube = { version = "0.82.0", default-features = false, features = ["client", "openssl-tls", "runtime"], optional = true }
listenfd = { version = "1.0.1", default-features = false, optional = true }
logfmt = { version = "0.0.2", default-features = false, optional = true }
lru = { version = "0.12.5", default-features = false, optional = true }
maxminddb = { version = "0.24.0", default-features = false, optional = true }
md-5 = { version = "0.10", default-features = false, optional = true }
Expand All @@ -344,7 +343,6 @@ notify = { version = "7.0.0", default-features = false, features = ["macos_fseve
openssl = { version = "0.10.68", default-features = false, features = ["vendored"] }
openssl-probe = { version = "0.1.5", default-features = false }
ordered-float = { version = "4.5.0", default-features = false }
paste = "1.0.15"
percent-encoding = { version = "2.3.1", default-features = false }
postgres-openssl = { version = "0.5.0", default-features = false, features = ["runtime"], optional = true }
pulsar = { version = "6.3.0", default-features = false, features = ["tokio-runtime", "auth-oauth2", "flate2", "lz4", "snap", "zstd"], optional = true }
Expand Down
1 change: 0 additions & 1 deletion lib/codecs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ tracing = { version = "0.1", default-features = false }
vrl.workspace = true
vector-common = { path = "../vector-common", default-features = false }
vector-config = { path = "../vector-config", default-features = false }
vector-config-common = { path = "../vector-config-common", default-features = false }
vector-config-macros = { path = "../vector-config-macros", default-features = false }
vector-core = { path = "../vector-core", default-features = false, features = ["vrl"] }

Expand Down
1 change: 0 additions & 1 deletion lib/docs-renderer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@ serde.workspace = true
serde_json.workspace = true
snafu.workspace = true
tracing = { version = "0.1.34", default-features = false }
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["ansi", "env-filter", "fmt", "json", "registry", "tracing-log"] }
vector-config = { path = "../vector-config" }
vector-config-common = { path = "../vector-config-common" }
2 changes: 0 additions & 2 deletions lib/file-source/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ glob.workspace = true
scan_fmt = "0.2.6"
vector-common = { path = "../vector-common", default-features = false }
vector-config = { path = "../vector-config", default-features = false }
vector-config-common = { path = "../vector-config-common", default-features = false }
vector-config-macros = { path = "../vector-config-macros", default-features = false }

[dependencies.bstr]
version = "1.11"
Expand Down
3 changes: 0 additions & 3 deletions lib/vector-buffers/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,13 @@ memmap2 = { version = "0.9.5", default-features = false }
metrics.workspace = true
num-traits = { version = "0.2.19", default-features = false }
paste = "1.0.15"
pin-project.workspace = true
rkyv = { version = "0.7.45", default-features = false, features = ["size_32", "std", "strict", "validation"] }
serde.workspace = true
snafu.workspace = true
tokio-util = { version = "0.7.0", default-features = false }
tokio = { version = "1.41.1", default-features = false, features = ["rt", "macros", "rt-multi-thread", "sync", "fs", "io-util", "time"] }
tracing = { version = "0.1.34", default-features = false, features = ["attributes"] }
vector-config = { path = "../vector-config", default-features = false }
vector-config-common = { path = "../vector-config-common", default-features = false }
vector-config-macros = { path = "../vector-config-macros", default-features = false }
vector-common = { path = "../vector-common", default-features = false, features = ["byte_size_of"] }

[dev-dependencies]
Expand Down
14 changes: 1 addition & 13 deletions lib/vector-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,47 +24,35 @@ conversion = [
]

encoding = [
"dep:nom",
"btreemap"
]

sensitive_string = []

test = []

tokenize = [
"dep:nom",
]
tokenize = []

[dependencies]
async-stream = "0.3.6"
bytes = { version = "1.9.0", default-features = false, optional = true }
chrono.workspace = true
chrono-tz.workspace = true
crossbeam-utils = { version = "0.8.20", default-features = false }
derivative = { version = "2.2.0", default-features = false }
futures.workspace = true
indexmap.workspace = true
metrics.workspace = true
nom = { version = "7", optional = true }
ordered-float = { version = "4.5.0", default-features = false }
paste = "1.0.15"
pin-project.workspace = true
ryu = { version = "1", default-features = false }
serde.workspace = true
serde_json.workspace = true
smallvec = { version = "1", default-features = false }
snafu.workspace = true
stream-cancel = { version = "0.8.2", default-features = false }
tokio = { version = "1.41.1", default-features = false, features = ["macros", "time"] }
tracing = { version = "0.1.34", default-features = false }
vrl.workspace = true
vector-config = { path = "../vector-config" }
vector-config-common = { path = "../vector-config-common" }
vector-config-macros = { path = "../vector-config-macros" }

[dev-dependencies]
futures = { version = "0.3.31", default-features = false, features = ["async-await"] }
tokio = { version = "1.41.1", default-features = false, features = ["rt", "time"] }
quickcheck = "1"
quickcheck_macros = "1"
1 change: 0 additions & 1 deletion lib/vector-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,3 @@ vector-config-macros = { path = "../vector-config-macros" }
[dev-dependencies]
assert-json-diff = { version = "2", default-features = false }
serde_with = { version = "3.11.0", default-features = false, features = ["std", "macros"] }
vector-core = { path = "../vector-core", default-features = false, features = ["test"] }
6 changes: 0 additions & 6 deletions lib/vector-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ publish = false
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(ddsketch_extended)'] }

[dependencies]
async-graphql = { version = "7.0.7", default-features = false, features = ["playground" ], optional = true }
async-trait = { version = "0.1", default-features = false }
bitmask-enum = { version = "2.2.5", default-features = false }
bytes = { version = "1.9.0", default-features = false, features = ["serde"] }
Expand Down Expand Up @@ -58,17 +57,13 @@ tokio-util = { version = "0.7.0", default-features = false, features = ["time"]
toml.workspace = true
tonic.workspace = true
tracing = { version = "0.1.34", default-features = false }
tracing-core = { version = "0.1.26", default-features = false }
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["std"] }
typetag = { version = "0.2.18", default-features = false }
url = { version = "2", default-features = false }
urlencoding = { version = "2.1.3", default-features = false }
uuid.workspace = true
vector-buffers = { path = "../vector-buffers", default-features = false }
vector-common = { path = "../vector-common" }
vector-config = { path = "../vector-config" }
vector-config-common = { path = "../vector-config-common" }
vector-config-macros = { path = "../vector-config-macros" }
vrl.workspace = true
cfg-if.workspace = true

Expand Down Expand Up @@ -102,7 +97,6 @@ tracing-subscriber = { version = "0.3.19", default-features = false, features =
vector-common = { path = "../vector-common", default-features = false, features = ["test"] }

[features]
api = ["dep:async-graphql"]
default = []
lua = ["dep:mlua", "dep:tokio-stream", "vrl/lua"]
vrl = ["dep:enrichment"]
Expand Down
2 changes: 1 addition & 1 deletion lib/vector-lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ vector-tap = { path = "../vector-tap" }
vrl = { workspace = true, optional = true }

[features]
api = ["vector-core/api", "vector-tap/api"]
api = ["vector-tap/api"]
api-client = ["dep:vector-api-client"]
lua = ["vector-core/lua"]
file-source = ["dep:file-source"]
Expand Down
1 change: 0 additions & 1 deletion lib/vector-tap/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ colored = { version = "2.1.0", default-features = false }
futures.workspace = true
glob.workspace = true
serde_yaml = { version = "0.9.34", default-features = false }
snafu.workspace = true
tokio = { version = "1.41.1", default-features = false, features = ["time"] }
tokio-stream = { version = "0.1.16", default-features = false, features = ["sync"] }
tokio-tungstenite = { version = "0.20.1", default-features = false }
Expand Down
3 changes: 0 additions & 3 deletions lib/vector-vrl/tests/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,9 @@ enrichment = { path = "../../enrichment" }
vrl.workspace = true
vector-vrl-functions = { path = "../../vector-vrl/functions" }

ansi_term = "0.12"
chrono.workspace = true
clap.workspace = true
glob.workspace = true
prettydiff = "0.8"
regex = "1"
serde.workspace = true
serde_json.workspace = true
tracing-subscriber = { version = "0.3.19", default-features = false, features = ["fmt"] }
Expand Down
1 change: 0 additions & 1 deletion vdev/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ indexmap.workspace = true
indicatif = { version = "0.17.9", features = ["improved_unicode"] }
itertools = "0.13.0"
log = "0.4.22"
os_info = { version = "3.9.0", default-features = false }
# watch https://github.com/epage/anstyle for official interop with Clap
owo-colors = { version = "4.1.0", features = ["supports-colors"] }
paste = "1.0.15"
Expand Down

0 comments on commit fc70024

Please sign in to comment.