From 924d6822633e6471b739cd3eb4516e9bac8f6c04 Mon Sep 17 00:00:00 2001 From: Andras Schmelczer Date: Tue, 7 Jan 2025 22:23:01 +0000 Subject: [PATCH] Inherit metadata --- backend/Cargo.toml | 5 +++++ backend/fuzz/Cargo.toml | 7 +++++-- backend/reconcile/Cargo.toml | 7 +++++-- backend/sync_lib/Cargo.toml | 8 +++++--- 4 files changed, 20 insertions(+), 7 deletions(-) diff --git a/backend/Cargo.toml b/backend/Cargo.toml index 8d7e022..09946ae 100644 --- a/backend/Cargo.toml +++ b/backend/Cargo.toml @@ -9,6 +9,11 @@ members = [ [workspace.package] rust-version = "1.83" +authors = ["Andras Schmelczer "] +edition = "2022" +license = "MIT" +repository = "https://github.com/schmelczer/vault-link" +version = "0.0.20" [workspace.dependencies] serde = { version = "1.0.214", default-features = false, features = ["derive"] } diff --git a/backend/fuzz/Cargo.toml b/backend/fuzz/Cargo.toml index 2ae9bc6..d764ba4 100644 --- a/backend/fuzz/Cargo.toml +++ b/backend/fuzz/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "reconcile-fuzz" -version = "0.0.20" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true publish = false -edition = "2021" [package.metadata] cargo-fuzz = true diff --git a/backend/reconcile/Cargo.toml b/backend/reconcile/Cargo.toml index 9699358..bc2f542 100644 --- a/backend/reconcile/Cargo.toml +++ b/backend/reconcile/Cargo.toml @@ -1,7 +1,10 @@ [package] name = "reconcile" -version = "0.0.20" -edition = "2021" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true [dependencies] serde = { version = "1.0.215", optional = true } diff --git a/backend/sync_lib/Cargo.toml b/backend/sync_lib/Cargo.toml index c1040e6..ef48f6e 100644 --- a/backend/sync_lib/Cargo.toml +++ b/backend/sync_lib/Cargo.toml @@ -1,8 +1,10 @@ [package] name = "sync_lib" -version = "0.0.20" -authors = ["Andras Schmelczer "] -edition = "2018" +version.workspace = true +edition.workspace = true +authors.workspace = true +license.workspace = true +repository.workspace = true [lib] crate-type = ["cdylib", "rlib"]