From fc1fa9ae5d173570ab32117a5abb2b537d2d2fe3 Mon Sep 17 00:00:00 2001 From: Pavlos Rontidis Date: Mon, 7 Aug 2023 14:42:56 -0400 Subject: [PATCH] chore: make pin-project a workspace dependency --- Cargo.toml | 3 ++- lib/vector-buffers/Cargo.toml | 2 +- lib/vector-common/Cargo.toml | 2 +- lib/vector-core/Cargo.toml | 2 +- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 91b26a9588885..854358554612e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -119,9 +119,11 @@ members = [ [workspace.dependencies] vrl = { version = "0.6.0", features = ["cli", "test", "test_framework", "arbitrary"] } +pin-project = { version = "1.1.3", default-features = false } [dependencies] vrl.workspace = true +pin-project.workspace = true # Internal libs codecs = { path = "lib/codecs", default-features = false } @@ -297,7 +299,6 @@ openssl-probe = { version = "0.1.5", default-features = false } ordered-float = { version = "3.7.0", default-features = false } paste = "1.0.14" percent-encoding = { version = "2.3.0", default-features = false } -pin-project = { version = "1.1.3", default-features = false } postgres-openssl = { version = "0.5.0", default-features = false, features = ["runtime"], optional = true } pulsar = { version = "6.0.1", default-features = false, features = ["tokio-runtime", "auth-oauth2", "flate2", "lz4", "snap", "zstd"], optional = true } rand = { version = "0.8.5", default-features = false, features = ["small_rng"] } diff --git a/lib/vector-buffers/Cargo.toml b/lib/vector-buffers/Cargo.toml index 221770289ed51..2cd492722c96f 100644 --- a/lib/vector-buffers/Cargo.toml +++ b/lib/vector-buffers/Cargo.toml @@ -19,7 +19,7 @@ futures = { version = "0.3.28", default-features = false, features = ["std"] } memmap2 = { version = "0.7.1", default-features = false } metrics = "0.21.1" num-traits = { version = "0.2.16", default-features = false } -pin-project = { version = "1.1.3", default-features = false } +pin-project.workspace = true rkyv = { version = "0.7.40", default-features = false, features = ["size_32", "std", "strict", "validation"] } serde = { version = "1.0.183", default-features = false, features = ["derive"] } snafu = { version = "0.7.5", default-features = false, features = ["std"] } diff --git a/lib/vector-common/Cargo.toml b/lib/vector-common/Cargo.toml index 2797f6fa6d1e9..1cd6428df74f4 100644 --- a/lib/vector-common/Cargo.toml +++ b/lib/vector-common/Cargo.toml @@ -53,7 +53,7 @@ metrics = "0.21.1" nom = { version = "7", optional = true } ordered-float = { version = "3.7.0", default-features = false } paste = "1.0.14" -pin-project = { version = "1.1.3", default-features = false } +pin-project.workspace = true ryu = { version = "1", default-features = false } serde_json = { version = "1.0.104", default-features = false, features = ["std", "raw_value"] } serde = { version = "1.0.183", optional = true, features = ["derive"] } diff --git a/lib/vector-core/Cargo.toml b/lib/vector-core/Cargo.toml index fb99ede58c4c7..5b7e8423b6ba7 100644 --- a/lib/vector-core/Cargo.toml +++ b/lib/vector-core/Cargo.toml @@ -33,7 +33,7 @@ once_cell = { version = "1.18", default-features = false } ordered-float = { version = "3.7.0", default-features = false } openssl = { version = "0.10.56", default-features = false, features = ["vendored"] } parking_lot = { version = "0.12.1", default-features = false } -pin-project = { version = "1.1.3", default-features = false } +pin-project.workspace = true proptest = { version = "1.2", optional = true } prost-types = { version = "0.11", default-features = false } prost = { version = "0.11", default-features = false, features = ["std"] }