From 80c0bf8eb49d9127a38165ab36f8d5724879c238 Mon Sep 17 00:00:00 2001 From: Ruben Nijveld Date: Tue, 21 Nov 2023 15:05:25 +0100 Subject: [PATCH] Cleanup of the cargo.toml files --- Cargo.toml | 8 -------- ntpd/Cargo.toml | 5 ----- 2 files changed, 13 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 8b39a1fb1..fde1eadcf 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -24,13 +24,6 @@ description = "Full-featured implementation of NTP with NTS support" publish = true rust-version = "1.66.0" # MSRV -[workspace.metadata.release] -sign-commit = true -sign-tag = true -shared-version = true -consolidate-commits = true -tag = false - # Because of the async runtime, we really want panics to cause an abort, otherwise # the binary can keep on running as a ghost [profile.dev] @@ -70,4 +63,3 @@ zeroize = "1.5" ntp-os-clock = { version = "1.0.0", path = "./ntp-os-clock" } ntp-proto = { version = "1.0.0", path = "./ntp-proto", features = ["__internal-api"] } ntp-udp = { version = "1.0.0", path = "./ntp-udp" } -ntpd = { version = "1.0.0", path = "./ntpd" } diff --git a/ntpd/Cargo.toml b/ntpd/Cargo.toml index a0a2e921b..de6e69ffe 100644 --- a/ntpd/Cargo.toml +++ b/ntpd/Cargo.toml @@ -11,10 +11,6 @@ publish.workspace = true rust-version.workspace = true build = "build.rs" -[package.metadata.release] -tag = true -tag-name = "v{{version}}" - [dependencies] ntp-proto.workspace = true ntp-os-clock.workspace = true @@ -81,7 +77,6 @@ assets = [ ["docs/examples/conf/ntpd-rs.preset", "/lib/systemd/system-preset/50-ntpd-rs.preset", "644"], ["docs/examples/conf/ntpd-rs.service", "/lib/systemd/system/ntpd-rs.service", "644"], ["docs/examples/conf/ntpd-rs-metrics.service", "/lib/systemd/system/ntpd-rs-metrics.service", "644"], - ["docs/examples/conf/ntp.toml.default", "/usr/share/doc/ntpd-rs/ntp.toml.default", "644"], ["../COPYING", "/usr/share/doc/ntpd-rs/COPYING", "644"], ["../LICENSE-APACHE", "/usr/share/doc/ntpd-rs/LICENSE-APACHE", "644"], ["../LICENSE-MIT", "/usr/share/doc/ntpd-rs/LICENSE-MIT", "644"],