From 29ad3fd56ee39141d4c49e9df59937403dc223cf Mon Sep 17 00:00:00 2001 From: Pavlos Rontidis Date: Mon, 14 Aug 2023 13:06:15 -0400 Subject: [PATCH] chore: make pin-project a workspace dependency (#18176) --- 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 d970628a272f82..0f8ea506ad17c0 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 633ff8cf658e41..04a59a48a22f12 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 523f403b8f774f..def5da14ae810d 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 d96f12f09ec0bd..71400ed7a68ab0 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"] }