[package] name = "vector" version = "0.55.0" authors = ["Vector Contributors "] edition = "2024" description = "A lightweight and ultra-fast tool for building observability pipelines" homepage = "https://vector.dev" license = "MPL-2.0" readme = "README.md" publish = false default-run = "vector" autobenches = false # our benchmarks are not runnable on their own either way # Minimum supported rust version # See docs/DEVELOPING.md for policy rust-version = "1.92" [[bin]] name = "vector" test = false bench = false [[bin]] name = "secret-backend-example" path = "src/config/loading/secret_backend_example.rs" test = false bench = false required-features = ["secret-backend-example"] [[test]] name = "integration" path = "tests/integration/lib.rs" [[test]] name = "e2e" path = "tests/e2e/mod.rs" [[test]] name = "vector_api" path = "tests/vector_api/lib.rs" required-features = ["vector-api-tests"] # CI-based builds use full release optimization. See scripts/environment/release-flags.sh. # This results in roughly a 5% reduction in performance when compiling locally vs when # compiled via the CI pipeline. [profile.release] debug = false # Do not include debug symbols in the executable. [profile.bench] debug = true [lints.rust] unexpected_cfgs = { level = "warn", check-cfg = ['cfg(tokio_unstable)'] } [package.metadata.deb] name = "vector" section = "admin" maintainer-scripts = "distribution/debian/scripts/" conf-files = ["/etc/vector/vector.yaml", "/etc/default/vector"] assets = [ ["target/release/vector", "/usr/bin/", "755"], ["config/vector.yaml", "/etc/vector/vector.yaml", "644"], ["config/examples/*", "/etc/vector/examples/", "644"], ["distribution/systemd/vector.service", "/lib/systemd/system/vector.service", "644"], ["distribution/systemd/vector.default", "/etc/default/vector", "600"], ["licenses/*", "/usr/share/vector/licenses/", "644"], ["NOTICE", "/usr/share/vector/NOTICE", "644"], ["LICENSE-3rdparty.csv", "/usr/share/vector/LICENSE-3rdparty.csv", "644"], ] license-file = ["target/debian-license.txt"] extended-description-file = "target/debian-extended-description.txt" recommends = "datadog-signing-keys (>= 1:1.4.0)" [package.metadata.deb.systemd-units] unit-scripts = "distribution/systemd/" enable = false start = false # libc requirements are defined by `cross` # https://github.com/rust-embedded/cross#supported-targets # Though, it seems like aarch64 libc is actually 2.18 and not 2.19 [package.metadata.deb.variants.arm-unknown-linux-gnueabi] depends = "libc6 (>= 2.15)" [package.metadata.deb.variants.armv7-unknown-linux-gnueabihf] depends = "libc6 (>= 2.15)" [package.metadata.deb.variants.x86_64-unknown-linux-gnu] depends = "libc6 (>= 2.15)" [package.metadata.deb.variants.x86_64-unknown-linux-musl] depends = "" [package.metadata.deb.variants.aarch64-unknown-linux-gnu] depends = "libc6 (>= 2.18)" [package.metadata.deb.variants.aarch64-unknown-linux-musl] depends = "" [workspace] members = [ ".", "lib/codecs", "lib/dnsmsg-parser", "lib/docs-renderer", "lib/fakedata", "lib/file-source", "lib/file-source-common", "lib/k8s-e2e-tests", "lib/k8s-test-framework", "lib/loki-logproto", "lib/prometheus-parser", "lib/opentelemetry-proto", "lib/tracing-limit", "lib/vector-api-client", "lib/vector-buffers", "lib/vector-common", "lib/vector-common-macros", "lib/vector-config", "lib/vector-config-common", "lib/vector-config-macros", "lib/vector-core", "lib/vector-lib", "lib/vector-lookup", "lib/vector-stream", "lib/vector-tap", "lib/vector-top", "lib/vector-vrl/category", "lib/vector-vrl/cli", "lib/vector-vrl/dnstap-parser", "lib/vector-vrl/doc-builder", "lib/vector-vrl/enrichment", "lib/vector-vrl/functions", "lib/vector-vrl/metrics", "lib/vector-vrl/tests", "lib/vector-vrl/web-playground", "vdev", ] [workspace.dependencies] anyhow = { version = "1.0.102", default-features = false, features = ["std"] } arc-swap = { version = "1.8.2", default-features = false } async-stream = { version = "0.3.6", default-features = false } async-trait = { version = "0.1.89", default-features = false } base64 = { version = "0.22.1", default-features = false } bytes = { version = "1.11.1", default-features = false, features = ["serde"] } cfg-if = { version = "1.0.4", default-features = false } chrono = { version = "0.4.44", default-features = false, features = ["clock", "serde"] } chrono-tz = { version = "0.10.4", default-features = false, features = ["serde"] } clap = { version = "4.5.60", default-features = false, features = ["derive", "error-context", "env", "help", "std", "string", "usage", "wrap_help"] } clap_complete = "4.5.66" colored = { version = "3.1.1", default-features = false } const-str = { version = "1.1.0", default-features = false } criterion = "0.8" crossbeam-utils = { version = "0.8.21", default-features = false } darling = { version = "0.20.11", default-features = false, features = ["suggestions"] } dashmap = { version = "6.1.0", default-features = false } derivative = { version = "2.2.0", default-features = false } exitcode = { version = "1.1.2", default-features = false } flate2 = { version = "1.1.2", default-features = false, features = ["zlib-rs"] } futures = { version = "0.3.31", default-features = false, features = ["std"] } futures-util = { version = "0.3.29", default-features = false } glob = { version = "0.3.3", default-features = false } hickory-proto = { version = "0.25.2", default-features = false, features = ["dnssec-ring"] } humantime = { version = "2.3.0", default-features = false } indexmap = { version = "2.11.0", default-features = false, features = ["serde", "std"] } indoc = { version = "2.0.7" } inventory = { version = "0.3" } itertools = { version = "0.14.0", default-features = false, features = ["use_alloc"] } libc = { version = "0.2", default-features = false, features = ["std"] } metrics = "0.24.2" metrics-tracing-context = { version = "0.17.0", default-features = false } metrics-util = { version = "0.18.0", default-features = false, features = ["registry"] } nom = { version = "8.0.0", default-features = false } ordered-float = { version = "4.6.0", default-features = false } pastey = { version = "0.2", default-features = false } pin-project = { version = "1.1.11", default-features = false } proptest = { version = "1.11" } proptest-derive = { version = "0.6.0" } prost = { version = "0.12", default-features = false, features = ["std"] } prost-build = { version = "0.12", default-features = false } prost-reflect = { version = "0.14", features = ["serde"], default-features = false } prost-types = { version = "0.12", default-features = false } quickcheck = { version = "1.1.0" } rand = { version = "0.9.2", default-features = false, features = ["small_rng", "thread_rng"] } rand_distr = { version = "0.5.1", default-features = false } rdkafka = { version = "0.39.0", default-features = false } regex = { version = "1.12.3", default-features = false, features = ["std", "perf"] } reqwest = { version = "0.11", features = ["json"] } rust_decimal = { version = "1.40.0", default-features = false, features = ["std"] } semver = { version = "1.0.27", default-features = false, features = ["serde", "std"] } serde = { version = "1.0.219", default-features = false, features = ["alloc", "derive", "rc"] } serde_json = { version = "1.0.143", default-features = false, features = ["preserve_order", "raw_value", "std"] } serde_yaml = { version = "0.9.34", default-features = false } snafu = { version = "0.9.0", default-features = false, features = ["futures", "std"] } socket2 = { version = "0.5.10", default-features = false } tempfile = "3.27.0" tokio = { version = "1.49.0", default-features = false } tokio-stream = { version = "0.1.18", default-features = false } tokio-test = "0.4.5" tokio-tungstenite = { version = "0.20.1", default-features = false } toml = { version = "0.9.8", default-features = false, features = ["serde", "display", "parse"] } tonic = { version = "0.11", default-features = false, features = ["transport", "codegen", "prost", "tls", "tls-roots", "gzip"] } tonic-build = { version = "0.11", default-features = false, features = ["transport", "prost"] } tonic-health = { version = "0.11", default-features = false } tonic-reflection = { version = "0.11", default-features = false, features = ["server"] } tracing = { version = "0.1.44", default-features = false } tracing-subscriber = { version = "0.3.22", default-features = false, features = ["fmt"] } url = { version = "2.5.4", default-features = false, features = ["serde"] } uuid = { version = "1.22.0", features = ["v4", "v7", "serde", "fast-rng"] } vector-config = { path = "lib/vector-config" } vector-config-common = { path = "lib/vector-config-common" } vector-config-macros = { path = "lib/vector-config-macros" } vector-common-macros = { path = "lib/vector-common-macros" } vector-lib = { path = "lib/vector-lib", default-features = false, features = ["vrl"] } vector-vrl-category = { path = "lib/vector-vrl/category" } vector-vrl-functions = { path = "lib/vector-vrl/functions", default-features = false } vrl = { default-features = false, features = ["arbitrary", "cli", "test", "test_framework", "stdlib-base"] , version = "0.32.0" } mock_instant = { version = "0.6" } serial_test = { version = "3.4" } strum = { version = "0.28", features = ["derive"] } [dependencies] cfg-if.workspace = true reqwest.workspace = true reqwest_12 = { package = "reqwest", version = "0.12", features = ["json"] } clap.workspace = true clap_complete.workspace = true indoc.workspace = true pastey.workspace = true pin-project.workspace = true proptest = { workspace = true, optional = true } proptest-derive = { workspace = true, optional = true } semver.workspace = true snafu.workspace = true uuid.workspace = true vrl.workspace = true # Internal libs dnsmsg-parser = { path = "lib/dnsmsg-parser", optional = true } dnstap-parser = { path = "lib/vector-vrl/dnstap-parser", optional = true } fakedata = { path = "lib/fakedata", optional = true } tracing-limit = { path = "lib/tracing-limit" } vector-common = { path = "lib/vector-common", default-features = false } vector-lib.workspace = true vector-config.workspace = true vector-config-common.workspace = true vector-config-macros.workspace = true vector-vrl-functions = { workspace = true, features = ["vrl-metrics"] } vector-vrl-metrics = { path = "lib/vector-vrl/metrics" } loki-logproto = { path = "lib/loki-logproto", optional = true } # Tokio / Futures async-stream.workspace = true async-trait.workspace = true futures.workspace = true tokio = { workspace = true, features = ["full"] } tokio-openssl = { version = "0.6.5", default-features = false } tokio-stream = { workspace = true, features = ["net", "sync", "time"] } tokio-util = { version = "0.7", default-features = false, features = ["io", "time"] } console-subscriber = { version = "0.4.1", default-features = false, optional = true } # Tracing tracing.workspace = true tracing-core = { version = "0.1.26", default-features = false } tracing-futures = { version = "0.2.5", default-features = false, features = ["futures-03"] } tracing-subscriber = { workspace = true, features = ["ansi", "env-filter", "fmt", "json", "registry", "tracing-log"] } tracing-tower = { git = "https://github.com/tokio-rs/tracing", default-features = false, rev = "e0642d949891546a3bb7e47080365ee7274f05cd" } # Metrics metrics.workspace = true metrics-tracing-context.workspace = true # AWS - Official SDK aws-runtime = { version = "1.5.9", optional = true } aws-config = { version = "1.8.13", default-features = false, features = ["behavior-version-latest", "credentials-process", "sso", "rt-tokio"], optional = true } aws-credential-types = { version = "1.2.4", default-features = false, features = ["hardcoded-credentials"], optional = true } aws-sdk-cloudwatch = { version = "1.102.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-cloudwatchlogs = { version = "1.116.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-elasticsearch = { version = "1.96.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-firehose = { version = "1.101.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-kinesis = { version = "1.99.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-kms = { version = "1.99.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-s3 = { version = "1.122.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-secretsmanager = { version = "1.99.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-sns = { version = "1.94.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-sdk-sqs = { version = "1.93.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } aws-types = { version = "1.3.8", default-features = false, optional = true } # The sts crate is needed despite not being referred to anywhere in the code because we need to set the # `behavior-version-latest` feature. Without this we get a runtime panic when `auth.assume_role` authentication # is configured. aws-sdk-sts = { version = "1.73.0", default-features = false, features = ["behavior-version-latest", "rt-tokio"], optional = true } # The `aws-sdk-sts` crate is needed despite not being referred to anywhere in the code because we need to set the # `behavior-version-latest` feature. Without this we get a runtime panic when `auth.assume_role` authentication is configured. aws-sigv4 = { version = "1.3.2", default-features = false, features = ["sign-http"], optional = true } aws-smithy-async = { version = "1.2.5", default-features = false, features = ["rt-tokio"], optional = true } aws-smithy-http = { version = "0.63", default-features = false, features = ["event-stream", "rt-tokio"], optional = true } aws-smithy-runtime = { version = "1.8.3", default-features = false, features = ["client", "connector-hyper-0-14-x", "rt-tokio"], optional = true } aws-smithy-runtime-api = { version = "1.7.3", default-features = false, optional = true } aws-smithy-types = { version = "1.2.11", default-features = false, features = ["rt-tokio"], optional = true } # Azure azure_core = { version = "0.30", features = ["reqwest", "hmac_openssl"], optional = true } azure_identity = { version = "0.30", features = ["client_certificate"], optional = true } # Azure Storage azure_storage_blob = { version = "0.7", optional = true } # OpenDAL opendal = { version = "0.54", default-features = false, features = ["services-webhdfs"], optional = true } # Tower tower = { version = "0.5.2", default-features = false, features = ["buffer", "limit", "retry", "timeout", "util", "balance", "discover"] } tower-http = { version = "0.4.4", default-features = false, features = ["compression-full", "decompression-full", "trace"] } # Serde serde.workspace = true serde-toml-merge = { version = "0.3.11", default-features = false } serde_bytes = { version = "0.11.17", default-features = false, features = ["std"], optional = true } serde_json.workspace = true serde_with = { version = "3.14.0", default-features = false, features = ["macros", "std"] } serde_yaml.workspace = true # Messagepack rmp-serde = { version = "1.3.0", default-features = false, optional = true } rmpv = { version = "1.3.0", default-features = false, features = ["with-serde"], optional = true } # Prost / Protocol Buffers prost = { workspace = true, optional = true } prost-reflect = { workspace = true, optional = true } prost-types = { workspace = true, optional = true } # GCP goauth = { version = "0.16.0", optional = true } smpl_jwt = { version = "0.8.0", default-features = false, optional = true } # AMQP lapin = { version = "4.3.0", default-features = false, features = ["tokio", "native-tls"], optional = true } async-rs = { version = "0.8", default-features = false, features = ["tokio"], optional = true } deadpool = { version = "0.13.0", default-features = false, features = ["managed", "rt_tokio_1"], optional = true } # Opentelemetry hex = { version = "0.4.3", default-features = false, optional = true } # GreptimeDB greptimedb-ingester = { git = "https://github.com/GreptimeTeam/greptimedb-ingester-rust", rev = "f7243393808640f5123b0d5b7b798da591a4df6e", optional = true } # External libs arc-swap = { workspace = true, default-features = false, optional = true } async-compression = { version = "0.4.27", default-features = false, features = ["tokio", "gzip", "zstd"], optional = true } apache-avro = { version = "0.16.0", default-features = false, optional = true } arrow = { version = "56.2.0", default-features = false, features = ["ipc"], optional = true } arrow-schema = { version = "56.2.0", default-features = false, optional = true } parquet = { version = "56.2.0", default-features = false, features = [ "arrow", "snap", "zstd", "lz4", "flate2-rust_backened", ], optional = true } axum = { version = "0.6.20", default-features = false } base64 = { workspace = true, optional = true } bloomy = { version = "1.2.0", default-features = false, optional = true } bollard = { version = "0.20", default-features = false, features = ["pipe", "ssl", "chrono"], optional = true } bytes = { workspace = true, features = ["serde"] } bytesize = { version = "2.0.1", default-features = false } chrono.workspace = true chrono-tz.workspace = true colored.workspace = true csv = { version = "1.3", default-features = false } databend-client = { version = "0.28.0", default-features = false, features = ["rustls"], optional = true } derivative.workspace = true dirs-next = { version = "2.0.0", default-features = false, optional = true } dyn-clone = { version = "1.0.20", default-features = false } encoding_rs = { version = "0.8.35", default-features = false, features = ["serde"] } enum_dispatch = { version = "0.3.13", default-features = false } evmap = { version = "10.0.2", default-features = false, optional = true } evmap-derive = { version = "0.2.0", default-features = false, optional = true } exitcode.workspace = true flate2.workspace = true futures-util.workspace = true glob.workspace = true governor = { version = "0.10.0", default-features = false, features = ["dashmap", "jitter", "std"], optional = true } h2 = { version = "0.4.11", default-features = false, optional = true } hash_hasher = { version = "2.0.4", default-features = false } hashbrown = { version = "0.14.5", default-features = false, optional = true, features = ["ahash"] } headers = { version = "0.3.9", default-features = false } hostname = { version = "0.4.0", default-features = false } http = { version = "0.2.9", default-features = false } http-1 = { package = "http", version = "1.0", default-features = false, features = ["std"] } http-serde = "1.1.3" http-body = { version = "0.4.6", default-features = false } humantime.workspace = true hyper = { version = "0.14.32", default-features = false, features = ["client", "runtime", "http1", "http2", "server", "stream", "backports", "deprecated"] } hyper-openssl = { version = "0.9.2", default-features = false } hyper-proxy = { version = "0.9.1", default-features = false, features = ["openssl-tls"] } indexmap.workspace = true inventory = { version = "0.3.20", default-features = false } ipnet = { version = "2", default-features = false, optional = true, features = ["serde", "std"] } itertools.workspace = true k8s-openapi = { version = "0.27.0", default-features = false, features = ["v1_31"], optional = true } kube = { version = "3.0.1", default-features = false, features = ["client", "openssl-tls", "runtime"], optional = true } listenfd = { version = "1.0.2", default-features = false, optional = true } lru = { version = "0.16.3", default-features = false } maxminddb = { version = "0.27.0", default-features = false, optional = true, features = ["simdutf8"] } md-5 = { version = "0.10", default-features = false, optional = true } mongodb = { version = "3.3.0", default-features = false, optional = true, features = ["compat-3-0-0", "dns-resolver", "rustls-tls"] } async-nats = { version = "0.46.0", default-features = false, optional = true, features = ["ring", "websockets", "jetstream", "nkeys"] } nkeys = { version = "0.4.5", default-features = false, optional = true } nom = { workspace = true, optional = true } notify = { version = "8.1.0", default-features = false, features = ["macos_fsevent"] } openssl = { version = "0.10.73", default-features = false, features = ["vendored"] } openssl-probe = { version = "0.1.6", default-features = false } ordered-float.workspace = true percent-encoding = { version = "2.3.1", default-features = false } postgres-openssl = { version = "0.5.1", default-features = false, features = ["runtime"], optional = true } pulsar = { version = "6.7.0", default-features = false, features = ["tokio-runtime", "auth-oauth2", "flate2", "lz4", "snap", "zstd"], optional = true } quick-junit = { version = "0.6.0" } rand.workspace = true rand_distr.workspace = true rdkafka = { workspace = true, features = ["curl-static", "tokio", "libz", "ssl", "zstd"], optional = true } redis = { version = "0.32.4", default-features = false, features = ["connection-manager", "sentinel", "tokio-comp", "tokio-native-tls-comp"], optional = true } regex.workspace = true roaring = { version = "0.11.2", default-features = false, features = ["std"], optional = true } rumqttc = { version = "0.24.0", default-features = false, features = ["use-rustls"], optional = true } rust_decimal = { workspace = true, optional = true } seahash = { version = "4.1.0", default-features = false } smallvec = { version = "1", default-features = false, features = ["union", "serde"] } snap = { version = "1.1.1", default-features = false } socket2.workspace = true sqlx = { version = "0.8.6", default-features = false, features = ["derive", "postgres", "chrono", "runtime-tokio", "tls-rustls-ring"], optional = true } stream-cancel = { version = "0.8.2", default-features = false } strip-ansi-escapes = { version = "0.2.1", default-features = false } syslog = { version = "6.1.1", default-features = false, optional = true } tokio-postgres = { version = "0.7.13", default-features = false, features = ["runtime", "with-chrono-0_4"], optional = true } tokio-tungstenite = { workspace = true, features = ["connect"], optional = true } toml.workspace = true hickory-proto = { workspace = true, optional = true } tonic = { workspace = true, optional = true } tonic-health = { workspace = true, optional = true } tonic-reflection = { workspace = true, optional = true } thread_local = { version = "1.1.9", default-features = false, optional = true } typetag = { version = "0.2.20", default-features = false } url.workspace = true warp = { version = "0.3.7", default-features = false } zstd = { version = "0.13.0", default-features = false } arr_macro = { version = "0.2.1" } # depending on fork for bumped nix dependency # https://github.com/heim-rs/heim/pull/360 heim = { git = "https://github.com/vectordotdev/heim.git", branch = "update-deps", default-features = false, features = ["disk"] } # make sure to update the external docs when the Lua version changes mlua = { version = "0.10.5", default-features = false, features = ["lua54", "send", "vendored", "macros"], optional = true } sysinfo = "0.37.2" byteorder = "1.5.0" [target.'cfg(windows)'.dependencies] windows-service = "0.8.0" windows = { version = "0.58", features = ["Win32_System_EventLog", "Win32_Foundation", "Win32_System_Com", "Win32_Security", "Win32_Security_Authorization", "Win32_System_Threading", "Win32_Storage_FileSystem"], optional = true } quick-xml = { version = "0.31", default-features = false, features = ["serialize"], optional = true } rdkafka = { workspace = true, features = ["cmake_build"], optional = true } [target.'cfg(unix)'.dependencies] nix = { version = "0.31", default-features = false, features = ["socket", "signal", "fs"] } tikv-jemallocator = { version = "0.6.0", default-features = false, features = ["unprefixed_malloc_on_supported_platforms"], optional = true } [target.'cfg(target_os = "linux")'.dependencies] procfs = { version = "0.18.0", default-features = false } [build-dependencies] prost-build = { workspace = true, optional = true } tonic-build = { workspace = true, optional = true } # update 'openssl_version' in website/config.toml whenever version changes openssl-src = { version = "300", default-features = false, features = ["force-engine", "legacy"] } [dev-dependencies] approx = "0.5.1" assert_cmd = { version = "2.0.17", default-features = false } aws-smithy-runtime = { version = "1.8.3", default-features = false, features = ["tls-rustls"] } base64 = "0.22.1" criterion = { workspace = true, features = ["html_reports", "async_tokio"] } itertools.workspace = true libc.workspace = true mock_instant.workspace = true proptest.workspace = true quickcheck.workspace = true reqwest.workspace = true rstest = { version = "0.26.1" } serial_test.workspace = true similar-asserts = "1.7.0" tempfile.workspace = true test-generator = "0.3.1" tokio = { workspace = true, features = ["test-util"] } tokio-test.workspace = true tower-test = "0.4.0" vector-lib = { workspace = true, features = ["test"] } vrl.workspace = true wiremock = "0.6.4" zstd = { version = "0.13.0", default-features = false } [patch.crates-io] # The `heim` crates depend on `ntapi` 0.3.7 on Windows, but that version has an # unaligned access bug fixed in the following revision. ntapi = { git = "https://github.com/MSxDOS/ntapi.git", rev = "24fc1e47677fc9f6e38e5f154e6011dc9b270da6" } [features] # Default features for *-unknown-linux-gnu and *-apple-darwin default = ["enable-unix", "rdkafka?/gssapi"] # Default features for `cargo docs`. We're not using `gssapi` which would require installing libsasl2 in our doc environment. docs = ["enable-unix"] # Default features for *-unknown-linux-* which make use of `cmake` for dependencies default-cmake = ["enable-unix", "vendored", "rdkafka?/cmake_build"] vendored = ["rdkafka?/gssapi-vendored"] # Default features for *-pc-windows-msvc # TODO: Enable SASL https://github.com/vectordotdev/vector/pull/3081#issuecomment-659298042 base = ["api", "enrichment-tables", "sinks", "sources", "transforms", "secrets", "vrl/stdlib"] enable-api-client = ["base", "api-client"] enable-unix = ["enable-api-client", "sources-dnstap", "unix"] default-msvc = ["enable-api-client", "rdkafka?/cmake_build"] default-musl = ["enable-unix", "vendored", "rdkafka?/cmake_build"] default-no-api-client = ["base", "sources-dnstap", "unix", "vendored"] tokio-console = ["dep:console-subscriber", "tokio/tracing"] # VRL functions control features vrl-functions-env = ["vrl/enable_env_functions"] vrl-functions-system = ["vrl/enable_system_functions"] vrl-functions-network = ["vrl/enable_network_functions"] vrl-functions-crypto = ["vrl/enable_crypto_functions"] # Enables the binary secret-backend-example secret-backend-example = ["transforms"] all-logs = ["sinks-logs", "sources-logs", "sources-dnstap", "transforms-logs"] all-metrics = ["sinks-metrics", "sources-metrics", "transforms-metrics"] # Target specific release features. # The `make` tasks will select this according to the appropriate triple. # Use this section to turn off or on specific features for specific triples. target-base = ["enable-api-client", "rdkafka?/cmake_build", "sources-dnstap"] target-unix = ["target-base", "unix"] target-aarch64-unknown-linux-gnu = ["target-unix"] target-aarch64-unknown-linux-musl = ["target-unix"] target-armv7-unknown-linux-gnueabihf = ["target-unix"] target-armv7-unknown-linux-musleabihf = ["target-base"] target-arm-unknown-linux-gnueabi = ["target-unix"] target-arm-unknown-linux-musleabi = ["target-base"] target-x86_64-unknown-linux-gnu = ["target-unix", "vendored"] target-x86_64-unknown-linux-musl = ["target-unix"] # Enables features that work only on systems providing `cfg(unix)` unix = ["tikv-jemallocator", "allocation-tracing"] allocation-tracing = ["vector-lib/allocation-tracing"] # Enables kubernetes dependencies and shared code. Kubernetes-related sources, # transforms and sinks should depend on this feature. kubernetes = ["dep:k8s-openapi", "dep:kube"] docker = ["dep:bollard", "dep:dirs-next"] # API api = [ "dep:base64", "dep:tonic", "dep:tonic-health", "dep:tonic-reflection", "dep:prost", "dep:prost-types", "protobuf-build", "vector-lib/api", ] # API client api-client = [ "api-client-minimal", "top", ] api-client-minimal = [ "vector-lib/api", "vector-lib/api-client", ] top = ["vector-lib/vector-top", "vector-lib/api-client"] aws-core = [ "aws-runtime", "aws-config", "dep:aws-credential-types", "dep:aws-sigv4", "dep:aws-types", "dep:aws-smithy-async", "dep:aws-smithy-http", "dep:aws-smithy-types", "dep:aws-smithy-runtime", "dep:aws-smithy-runtime-api", "dep:aws-sdk-sts", ] # Anything that requires Protocol Buffers. protobuf-build = ["dep:tonic-build", "dep:prost-build"] gcp = ["dep:base64", "dep:goauth", "dep:smpl_jwt"] # Enrichment Tables enrichment-tables = ["enrichment-tables-geoip", "enrichment-tables-mmdb", "enrichment-tables-memory"] enrichment-tables-geoip = ["dep:maxminddb"] enrichment-tables-mmdb = ["dep:maxminddb"] enrichment-tables-memory = ["dep:evmap", "dep:evmap-derive", "dep:thread_local"] # Codecs codecs-arrow = ["dep:arrow", "dep:arrow-schema", "vector-lib/arrow"] codecs-parquet = ["dep:parquet", "codecs-arrow", "vector-lib/parquet"] codecs-opentelemetry = ["vector-lib/opentelemetry"] codecs-syslog = ["vector-lib/syslog"] # Secrets secrets = ["secrets-aws-secrets-manager"] secrets-aws-secrets-manager = ["aws-core", "dep:aws-sdk-secretsmanager"] # Sources sources = ["sources-logs", "sources-metrics"] sources-logs = [ "sources-amqp", "sources-aws_kinesis_firehose", "sources-aws_s3", "sources-aws_sqs", "sources-datadog_agent", "sources-demo_logs", "sources-docker_logs", "sources-exec", "sources-file", "sources-fluent", "sources-gcp_pubsub", "sources-heroku_logs", "sources-http_server", "sources-http_client", "sources-internal_logs", "sources-journald", "sources-kafka", "sources-kubernetes_logs", "sources-logstash", "sources-mqtt", "sources-nats", "sources-okta", "sources-opentelemetry", "sources-pulsar", "sources-file_descriptor", "sources-redis", "sources-socket", "sources-splunk_hec", "sources-stdin", "sources-syslog", "sources-vector", "sources-websocket", "sources-windows_event_log", ] sources-metrics = [ "dep:prost", "sources-apache_metrics", "sources-aws_ecs_metrics", "sources-eventstoredb_metrics", "sources-host_metrics", "sources-internal_metrics", "sources-mongodb_metrics", "sources-nginx_metrics", "sources-postgresql_metrics", "sources-prometheus", "sources-static_metrics", "sources-statsd", "sources-vector", "sources-websocket", ] sources-amqp = ["lapin", "async-rs"] sources-apache_metrics = ["sources-utils-http-client"] sources-aws_ecs_metrics = ["sources-utils-http-client"] sources-aws_kinesis_firehose = ["dep:base64"] sources-aws_s3 = ["aws-core", "dep:aws-sdk-sqs", "dep:aws-sdk-s3", "dep:async-compression", "sources-aws_sqs", "tokio-util/io"] sources-aws_sqs = ["aws-core", "dep:aws-sdk-sqs"] sources-datadog_agent = ["sources-utils-http-encoding", "protobuf-build", "dep:prost"] sources-demo_logs = ["dep:fakedata"] sources-dnstap = ["sources-utils-net-tcp", "dep:base64", "dep:hickory-proto", "dep:dnsmsg-parser", "dep:dnstap-parser", "protobuf-build", "dep:prost", "vector-vrl-functions/dnstap"] sources-docker_logs = ["docker"] sources-eventstoredb_metrics = [] sources-exec = [] sources-file = ["vector-lib/file-source"] sources-file_descriptor = ["tokio-util/io"] sources-fluent = ["dep:base64", "sources-utils-net-tcp", "sources-utils-net-unix", "tokio-util/net", "dep:rmpv", "dep:rmp-serde", "dep:serde_bytes"] sources-gcp_pubsub = ["gcp", "dep:h2", "dep:prost", "dep:prost-types", "protobuf-build", "dep:tonic"] sources-heroku_logs = ["sources-utils-http", "sources-utils-http-query", "sources-http_server"] sources-host_metrics = ["heim/cpu", "heim/host", "heim/memory", "heim/net"] sources-http_client = ["sources-utils-http-client"] sources-http_server = ["sources-utils-http", "sources-utils-http-headers", "sources-utils-http-query"] sources-internal_logs = [] sources-internal_metrics = [] sources-static_metrics = [] sources-journald = [] sources-kafka = ["dep:rdkafka"] sources-kubernetes_logs = ["vector-lib/file-source", "kubernetes", "transforms-reduce"] sources-logstash = ["sources-utils-net-tcp", "tokio-util/net"] sources-mongodb_metrics = ["dep:mongodb"] sources-mqtt = ["dep:rumqttc"] sources-nats = ["dep:async-nats", "dep:nkeys"] sources-nginx_metrics = ["dep:nom"] sources-okta = ["sources-utils-http-client"] sources-opentelemetry = [ "dep:hex", "codecs-opentelemetry", "vector-lib/opentelemetry", "dep:prost", "dep:prost-types", "sources-http_server", "sources-utils-http", "sources-utils-http-headers", "sources-vector", ] sources-postgresql_metrics = ["dep:postgres-openssl", "dep:tokio-postgres"] sources-prometheus = ["sources-prometheus-scrape", "sources-prometheus-remote-write", "sources-prometheus-pushgateway"] sources-prometheus-scrape = ["sinks-prometheus", "sources-utils-http-client", "vector-lib/prometheus"] sources-prometheus-remote-write = ["sinks-prometheus", "sources-utils-http", "vector-lib/prometheus"] sources-prometheus-pushgateway = ["sinks-prometheus", "sources-utils-http", "vector-lib/prometheus"] sources-pulsar = ["dep:apache-avro", "dep:pulsar"] sources-redis = ["dep:redis"] sources-socket = ["sources-utils-net", "tokio-util/net"] sources-splunk_hec = ["dep:roaring"] sources-statsd = ["sources-utils-net", "tokio-util/net"] sources-stdin = ["tokio-util/io"] sources-syslog = ["codecs-syslog", "sources-utils-net", "tokio-util/net"] sources-utils-http = ["sources-utils-http-auth", "sources-utils-http-encoding", "sources-utils-http-error", "sources-utils-http-prelude"] sources-utils-http-auth = ["sources-utils-http-error"] sources-utils-http-encoding = ["sources-utils-http-error"] sources-utils-http-error = [] sources-utils-http-headers = [] sources-utils-http-prelude = ["sources-utils-http", "sources-utils-http-auth", "sources-utils-http-encoding", "sources-utils-http-error"] sources-utils-http-query = [] sources-utils-http-client = ["sources-utils-http", "sources-http_server"] sources-utils-net = ["sources-utils-net-tcp", "sources-utils-net-udp", "sources-utils-net-unix"] sources-utils-net-tcp = ["listenfd", "dep:ipnet"] sources-utils-net-udp = ["listenfd"] sources-utils-net-unix = [] sources-websocket = ["dep:tokio-tungstenite"] sources-windows_event_log = ["dep:windows", "dep:quick-xml", "dep:governor"] sources-windows_event_log-integration-tests = ["sources-windows_event_log"] sources-vector = ["dep:prost", "dep:tonic", "dep:tonic-health", "protobuf-build"] # Transforms transforms = ["transforms-logs", "transforms-metrics"] transforms-logs = [ "transforms-aws_ec2_metadata", "transforms-dedupe", "transforms-filter", "transforms-window", "transforms-log_to_metric", "transforms-lua", "transforms-metric_to_log", "transforms-reduce", "transforms-remap", "transforms-route", "transforms-exclusive-route", "transforms-sample", "transforms-throttle", "transforms-trace_to_log" ] transforms-metrics = [ "transforms-aggregate", "transforms-filter", "transforms-incremental_to_absolute", "transforms-log_to_metric", "transforms-lua", "transforms-metric_to_log", "transforms-remap", "transforms-tag_cardinality_limit", "transforms-throttle", ] transforms-aggregate = [] transforms-aws_ec2_metadata = ["dep:arc-swap"] transforms-dedupe = ["transforms-impl-dedupe"] transforms-filter = [] transforms-incremental_to_absolute = [] transforms-window = [] transforms-log_to_metric = [] transforms-lua = ["dep:mlua", "vector-lib/lua"] transforms-metric_to_log = [] transforms-reduce = ["transforms-impl-reduce"] transforms-remap = [] transforms-route = [] transforms-exclusive-route = [] transforms-sample = ["transforms-impl-sample"] transforms-tag_cardinality_limit = ["dep:bloomy", "dep:hashbrown"] transforms-throttle = ["dep:governor"] transforms-trace_to_log = [] # Implementations of transforms transforms-impl-sample = [] transforms-impl-dedupe = [] transforms-impl-reduce = [] # Sinks sinks = ["sinks-logs", "sinks-metrics"] sinks-logs = [ "sinks-amqp", "sinks-appsignal", "sinks-aws_cloudwatch_logs", "sinks-aws_kinesis_firehose", "sinks-aws_kinesis_streams", "sinks-aws_s3", "sinks-aws_sns", "sinks-aws_sqs", "sinks-axiom", "sinks-azure_blob", "sinks-azure_logs_ingestion", "sinks-azure_monitor_logs", "sinks-blackhole", "sinks-chronicle", "sinks-clickhouse", "sinks-console", "sinks-databend", "sinks-datadog_events", "sinks-datadog_logs", "sinks-datadog_traces", "sinks-doris", "sinks-elasticsearch", "sinks-file", "sinks-gcp", "sinks-greptimedb_logs", "sinks-honeycomb", "sinks-http", "sinks-humio", "sinks-influxdb", "sinks-kafka", "sinks-keep", "sinks-loki", "sinks-mezmo", "sinks-mqtt", "sinks-nats", "sinks-new_relic", "sinks-new_relic_logs", "sinks-opentelemetry", "sinks-papertrail", "sinks-postgres", "sinks-pulsar", "sinks-redis", "sinks-sematext", "sinks-socket", "sinks-splunk_hec", "sinks-vector", "sinks-webhdfs", "sinks-websocket", "sinks-websocket-server", ] sinks-metrics = [ "sinks-appsignal", "sinks-aws_cloudwatch_metrics", "sinks-blackhole", "sinks-console", "sinks-datadog_metrics", "sinks-greptimedb_metrics", "sinks-humio", "sinks-influxdb", "sinks-kafka", "sinks-prometheus", "sinks-sematext", "sinks-statsd", "sinks-vector", "sinks-splunk_hec" ] sinks-amqp = ["deadpool", "lapin", "async-rs"] sinks-appsignal = [] sinks-aws_cloudwatch_logs = ["aws-core", "dep:aws-sdk-cloudwatchlogs", "dep:aws-sdk-kms"] sinks-aws_cloudwatch_metrics = ["aws-core", "dep:aws-sdk-cloudwatch"] sinks-aws_kinesis_firehose = ["aws-core", "dep:aws-sdk-firehose"] sinks-aws_kinesis_streams = ["aws-core", "dep:aws-sdk-kinesis"] sinks-aws_s3 = ["dep:base64", "dep:md-5", "aws-core", "dep:aws-sdk-s3"] sinks-aws_sqs = ["aws-core", "dep:aws-sdk-sqs"] sinks-aws_sns = ["aws-core", "dep:aws-sdk-sns"] sinks-axiom = ["sinks-http"] sinks-azure_blob = ["dep:azure_core", "dep:azure_identity", "dep:azure_storage_blob", "dep:base64"] sinks-azure_logs_ingestion = ["dep:azure_core", "dep:azure_identity", "dep:azure_storage_blob", "dep:base64"] sinks-azure_monitor_logs = [] sinks-blackhole = [] sinks-chronicle = [] sinks-clickhouse = ["dep:nom", "dep:rust_decimal", "codecs-arrow"] sinks-console = [] sinks-databend = ["dep:databend-client"] sinks-datadog_events = [] sinks-datadog_logs = [] sinks-datadog_metrics = ["protobuf-build", "dep:prost", "dep:prost-reflect"] sinks-datadog_traces = ["protobuf-build", "dep:prost", "dep:rmpv", "dep:rmp-serde", "dep:serde_bytes"] sinks-doris = ["sqlx/mysql"] sinks-elasticsearch = ["transforms-metric_to_log"] sinks-file = ["dep:async-compression"] sinks-gcp = ["sinks-gcp-chronicle", "dep:base64", "gcp"] sinks-gcp-chronicle = ["gcp"] sinks-greptimedb_metrics = ["dep:greptimedb-ingester"] sinks-greptimedb_logs = ["dep:greptimedb-ingester"] sinks-honeycomb = [] sinks-http = [] sinks-humio = ["sinks-splunk_hec", "transforms-metric_to_log"] sinks-influxdb = [] sinks-kafka = ["dep:rdkafka"] sinks-keep = [] sinks-mezmo = [] sinks-loki = ["loki-logproto"] sinks-mqtt = ["dep:rumqttc"] sinks-nats = ["dep:async-nats", "dep:nkeys"] sinks-new_relic_logs = ["sinks-http"] sinks-new_relic = [] sinks-opentelemetry = ["sinks-http", "codecs-opentelemetry"] sinks-papertrail = ["dep:syslog"] sinks-prometheus = ["dep:base64", "dep:prost", "vector-lib/prometheus"] sinks-postgres = ["dep:sqlx"] sinks-pulsar = ["dep:apache-avro", "dep:pulsar"] sinks-redis = ["dep:redis"] sinks-sematext = ["sinks-elasticsearch", "sinks-influxdb"] sinks-socket = ["sinks-utils-udp"] sinks-splunk_hec = [] sinks-statsd = ["sinks-utils-udp", "tokio-util/net"] sinks-utils-udp = [] sinks-vector = ["sinks-utils-udp", "dep:tonic", "protobuf-build", "dep:prost"] sinks-websocket = ["dep:tokio-tungstenite"] sinks-websocket-server = ["dep:tokio-tungstenite", "sources-utils-http-auth", "sources-utils-http-error", "sources-utils-http-prelude"] sinks-webhdfs = ["dep:opendal"] # Identifies that the build is a nightly build nightly = [] # Integration testing-related features all-integration-tests = [ "amqp-integration-tests", "appsignal-integration-tests", "aws-integration-tests", "axiom-integration-tests", "azure-integration-tests", "chronicle-integration-tests", "clickhouse-integration-tests", "databend-integration-tests", "datadog-agent-integration-tests", "datadog-logs-integration-tests", "datadog-metrics-integration-tests", "datadog-traces-integration-tests", "dnstap-integration-tests", "docker-logs-integration-tests", "doris-integration-tests", "es-integration-tests", "eventstoredb_metrics-integration-tests", "fluent-integration-tests", "gcp-cloud-storage-integration-tests", "gcp-integration-tests", "gcp-pubsub-integration-tests", "greptimedb-integration-tests", "http-client-integration-tests", "humio-integration-tests", "influxdb-integration-tests", "kafka-integration-tests", "logstash-integration-tests", "loki-integration-tests", "mongodb_metrics-integration-tests", "mqtt-integration-tests", "nats-integration-tests", "nginx-integration-tests", "opentelemetry-integration-tests", "postgresql_metrics-integration-tests", "postgres_sink-integration-tests", "prometheus-integration-tests", "pulsar-integration-tests", "redis-integration-tests", "splunk-integration-tests", "vector-api-tests", "webhdfs-integration-tests", "windows-event-log-integration-tests", ] amqp-integration-tests = ["sources-amqp", "sinks-amqp"] appsignal-integration-tests = ["sinks-appsignal"] aws-integration-tests = [ "aws-cloudwatch-logs-integration-tests", "aws-cloudwatch-metrics-integration-tests", "aws-ec2-metadata-integration-tests", "aws-ecs-metrics-integration-tests", "aws-kinesis-firehose-integration-tests", "aws-kinesis-streams-integration-tests", "aws-s3-integration-tests", "aws-sqs-integration-tests", "aws-sns-integration-tests", ] azure-integration-tests = [ "azure-blob-integration-tests", "azure-logs-ingestion-integration-tests", ] aws-cloudwatch-logs-integration-tests = ["sinks-aws_cloudwatch_logs"] aws-cloudwatch-metrics-integration-tests = ["sinks-aws_cloudwatch_metrics"] aws-ec2-metadata-integration-tests = ["transforms-aws_ec2_metadata"] aws-ecs-metrics-integration-tests = ["sources-aws_ecs_metrics"] aws-kinesis-firehose-integration-tests = ["sinks-aws_kinesis_firehose", "dep:aws-sdk-elasticsearch", "sinks-elasticsearch"] aws-kinesis-streams-integration-tests = ["sinks-aws_kinesis_streams"] aws-s3-integration-tests = ["sinks-aws_s3", "sources-aws_s3"] aws-sqs-integration-tests = ["sinks-aws_sqs"] aws-sns-integration-tests = ["sinks-aws_sns"] axiom-integration-tests = ["sinks-axiom"] azure-blob-integration-tests = ["sinks-azure_blob"] azure-logs-ingestion-integration-tests = ["sinks-azure_logs_ingestion"] chronicle-integration-tests = ["sinks-gcp"] clickhouse-integration-tests = ["sinks-clickhouse"] databend-integration-tests = ["sinks-databend"] datadog-agent-integration-tests = ["sources-datadog_agent"] datadog-logs-integration-tests = ["sinks-datadog_logs"] datadog-metrics-integration-tests = ["sinks-datadog_metrics", "dep:prost"] datadog-traces-integration-tests = ["sources-datadog_agent", "sinks-datadog_traces", "axum/tokio"] docker-logs-integration-tests = ["sources-docker_logs", "unix"] doris-integration-tests = ["sinks-doris"] es-integration-tests = ["sinks-elasticsearch", "aws-core"] eventstoredb_metrics-integration-tests = ["sources-eventstoredb_metrics"] fluent-integration-tests = ["docker", "sources-fluent"] gcp-cloud-storage-integration-tests = ["sinks-gcp"] gcp-integration-tests = ["sinks-gcp"] gcp-pubsub-integration-tests = ["sinks-gcp", "sources-gcp_pubsub"] greptimedb-integration-tests = ["sinks-greptimedb_metrics", "sinks-greptimedb_logs"] humio-integration-tests = ["sinks-humio"] http-client-integration-tests = ["sources-http_client", "vrl-functions-crypto"] influxdb-integration-tests = ["sinks-influxdb"] kafka-integration-tests = ["sinks-kafka", "sources-kafka"] logstash-integration-tests = ["docker", "sources-logstash"] loki-integration-tests = ["sinks-loki"] mongodb_metrics-integration-tests = ["sources-mongodb_metrics"] mqtt-integration-tests = ["sinks-mqtt", "sources-mqtt"] nats-integration-tests = ["sinks-nats", "sources-nats"] nginx-integration-tests = ["sources-nginx_metrics"] opentelemetry-integration-tests = ["sources-opentelemetry", "dep:prost"] postgresql_metrics-integration-tests = ["sources-postgresql_metrics"] postgres_sink-integration-tests = ["sinks-postgres"] prometheus-integration-tests = ["sinks-prometheus", "sources-prometheus", "sinks-influxdb"] pulsar-integration-tests = ["sinks-pulsar", "sources-pulsar"] redis-integration-tests = ["sinks-redis", "sources-redis"] splunk-integration-tests = ["sinks-splunk_hec"] dnstap-integration-tests = ["sources-dnstap", "dep:bollard"] webhdfs-integration-tests = ["sinks-webhdfs"] windows-event-log-integration-tests = ["sources-windows_event_log-integration-tests"] disable-resolv-conf = [] shutdown-tests = ["api", "sinks-blackhole", "sinks-console", "sinks-prometheus", "sources", "transforms-lua", "transforms-remap", "unix"] cli-tests = ["sinks-blackhole", "sinks-socket", "sources-demo_logs", "sources-file", "transforms-remap"] test-utils = ["vector-lib/test"] # End-to-End testing-related features all-e2e-tests = [ "e2e-tests-datadog", "e2e-tests-opentelemetry" ] e2e-tests-datadog = [ "sources-datadog_agent", "sinks-datadog_logs", "sinks-datadog_metrics", "dep:async-compression" ] e2e-tests-opentelemetry = [ "sources-opentelemetry", "sinks-opentelemetry", "sources-internal_metrics", "transforms-remap", "sinks-console", "sinks-file", "codecs-opentelemetry", "dep:prost-reflect" ] vector-api-tests = [ "top", "api", "api-client-minimal", "sources-demo_logs", "transforms-log_to_metric", "transforms-remap", "transforms-route", "sinks-blackhole" ] vector-unit-test-tests = [ "sources-demo_logs", "transforms-remap", "transforms-route", "transforms-filter", "transforms-reduce", "sinks-console" ] component-validation-runner = ["dep:tonic", "sources-internal_logs", "sources-internal_metrics", "sources-vector", "sinks-vector"] # For now, only include components that implement ValidatableComponent. # In the future, this can change to simply reference the targets `sources`, `transforms`, `sinks` component-validation-tests = [ "component-validation-runner", "sources-http_client", "sources-http_server", "sinks-http", "sinks-splunk_hec", "sources-splunk_hec", "sinks-datadog_logs", "sources-datadog_agent", ] # Grouping together features for benchmarks. We exclude the API client due to it causing the build process to run out # of memory when those additional dependencies are built in CI. benches = [ "sinks-file", "sinks-http", "sinks-socket", "sources-file", "sources-socket", "sources-syslog", "transforms-lua", "transforms-sample", ] dnstap-benches = ["sources-dnstap"] language-benches = ["sinks-socket", "sources-socket", "transforms-lua", "transforms-remap"] # Separate benching process for metrics due to the nature of the bootstrap procedures. statistic-benches = [] remap-benches = ["transforms-remap"] transform-benches = ["transforms-filter", "transforms-dedupe", "transforms-reduce", "transforms-route"] codecs-benches = [] loki-benches = ["sinks-loki"] enrichment-tables-benches = ["enrichment-tables-geoip", "enrichment-tables-mmdb", "enrichment-tables-memory"] proptest = ["dep:proptest", "dep:proptest-derive", "vrl/proptest"] [[bench]] name = "default" harness = false required-features = ["benches"] [[bench]] name = "dnstap" path = "benches/dnstap/mod.rs" harness = false required-features = ["dnstap-benches"] [[bench]] name = "remap" harness = false required-features = ["remap-benches"] [[bench]] name = "enrichment_tables" harness = false required-features = ["enrichment-tables-benches"] [[bench]] name = "languages" harness = false required-features = ["language-benches"] [[bench]] name = "loki" harness = false required-features = ["loki-benches"] [[bench]] name = "distribution_statistic" harness = false required-features = ["statistic-benches"] [[bench]] name = "transform" path = "benches/transform/main.rs" harness = false test = false required-features = ["transform-benches"] [[bench]] name = "codecs" path = "benches/codecs/main.rs" harness = false required-features = ["codecs-benches"]