From 7ae9b51d78b896624ddca7506bb06885373ccb22 Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Wed, 6 Nov 2024 20:47:07 +0000 Subject: [PATCH] fix(destination): enable the `meta` feature The destination API now requires the `meta` feature to be enabled. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 27f3f131d..99f3f426e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -14,7 +14,7 @@ rust-version = "1.59" [features] default = [] arbitrary = ["quickcheck"] -destination = ["http-types", "net", "prost-types", "tonic/codegen"] +destination = ["http-types", "meta", "net", "prost-types", "tonic/codegen"] grpc-route = ["http-route"] http-route = ["http-types"] http-types = ["http", "thiserror"]