From 1a1eea1dfb8799dd21c131f6b65842ffb2aff9b0 Mon Sep 17 00:00:00 2001 From: Benjamin Naecker Date: Wed, 13 Dec 2023 17:22:27 +0000 Subject: [PATCH 1/3] Bump all editions, and required versions for new release --- Cargo.lock | 10 +++++----- dof/Cargo.toml | 4 ++-- dtrace-parser/Cargo.toml | 2 +- dusty/Cargo.toml | 2 +- probe-test-attr/Cargo.toml | 2 +- probe-test-build/Cargo.toml | 2 +- probe-test-macro/Cargo.toml | 2 +- tests/argument-types/Cargo.toml | 2 +- tests/compile-errors/Cargo.toml | 2 +- tests/does-it-work/Cargo.toml | 2 +- tests/empty/Cargo.toml | 2 +- tests/fake-cmd/Cargo.toml | 2 +- tests/fake-lib/Cargo.toml | 2 +- tests/test-json/Cargo.toml | 2 +- tests/test-unique-id/Cargo.toml | 2 +- tests/usize/Cargo.toml | 2 +- tests/zero-arg-probe/Cargo.toml | 2 +- usdt-attr-macro/Cargo.toml | 6 +++--- usdt-impl/Cargo.toml | 8 ++++---- usdt-macro/Cargo.toml | 6 +++--- usdt-tests-common/Cargo.toml | 2 +- usdt/Cargo.toml | 12 ++++++------ 22 files changed, 39 insertions(+), 39 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 15c809f5..46c9eef5 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -198,7 +198,7 @@ dependencies = [ [[package]] name = "dof" -version = "0.1.5" +version = "0.2.0" dependencies = [ "goblin", "pretty-hex", @@ -831,7 +831,7 @@ checksum = "3354b9ac3fae1ff6755cb6db53683adb661634f67557942dea4facebec0fee4b" [[package]] name = "usdt" -version = "0.3.5" +version = "0.4.0" dependencies = [ "dof", "dtrace-parser", @@ -845,7 +845,7 @@ dependencies = [ [[package]] name = "usdt-attr-macro" -version = "0.3.5" +version = "0.4.0" dependencies = [ "dtrace-parser", "proc-macro2", @@ -858,7 +858,7 @@ dependencies = [ [[package]] name = "usdt-impl" -version = "0.3.5" +version = "0.4.0" dependencies = [ "byteorder", "dof", @@ -876,7 +876,7 @@ dependencies = [ [[package]] name = "usdt-macro" -version = "0.3.5" +version = "0.4.0" dependencies = [ "dtrace-parser", "proc-macro2", diff --git a/dof/Cargo.toml b/dof/Cargo.toml index 581b39ec..2d4afd61 100644 --- a/dof/Cargo.toml +++ b/dof/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "dof" -version = "0.1.5" +version = "0.2.0" authors = [ "Benjamin Naecker ", "Adam H. Leventhal ", ] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Tools to read and write the DTrace Object Format (DOF)" repository = "https://github.com/oxidecomputer/usdt.git" diff --git a/dtrace-parser/Cargo.toml b/dtrace-parser/Cargo.toml index 9724938d..da4e73f4 100644 --- a/dtrace-parser/Cargo.toml +++ b/dtrace-parser/Cargo.toml @@ -3,7 +3,7 @@ name = "dtrace-parser" version = "0.1.14" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Parse DTrace provider definitions into Rust" repository = "https://github.com/oxidecomputer/usdt.git" diff --git a/dusty/Cargo.toml b/dusty/Cargo.toml index b02e30fc..aa86f173 100644 --- a/dusty/Cargo.toml +++ b/dusty/Cargo.toml @@ -2,7 +2,7 @@ name = "dusty" version = "0.1.0" authors = ["Benjamin Naecker "] -edition = "2018" +edition = "2021" description = "Tool to inspect USDT probe records in object files" license = "Apache-2.0" rust-version = "1.70.0" diff --git a/probe-test-attr/Cargo.toml b/probe-test-attr/Cargo.toml index 5de04d9b..233713f8 100644 --- a/probe-test-attr/Cargo.toml +++ b/probe-test-attr/Cargo.toml @@ -2,7 +2,7 @@ name = "probe-test-attr" version = "0.1.0" authors = ["Benjamin Naecker "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../usdt", default-features = false } diff --git a/probe-test-build/Cargo.toml b/probe-test-build/Cargo.toml index 9fa724e1..fcd74f21 100644 --- a/probe-test-build/Cargo.toml +++ b/probe-test-build/Cargo.toml @@ -3,7 +3,7 @@ name = "probe-test-build" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../usdt", default-features = false } diff --git a/probe-test-macro/Cargo.toml b/probe-test-macro/Cargo.toml index d7b951ec..392fe047 100644 --- a/probe-test-macro/Cargo.toml +++ b/probe-test-macro/Cargo.toml @@ -3,7 +3,7 @@ name = "probe-test-macro" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../usdt", default-features = false } diff --git a/tests/argument-types/Cargo.toml b/tests/argument-types/Cargo.toml index 991a9646..bd73894b 100644 --- a/tests/argument-types/Cargo.toml +++ b/tests/argument-types/Cargo.toml @@ -2,7 +2,7 @@ name = "argument-types" version = "0.1.0" authors = ["Benjamin Naecker "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/compile-errors/Cargo.toml b/tests/compile-errors/Cargo.toml index 4e85f318..e8769842 100644 --- a/tests/compile-errors/Cargo.toml +++ b/tests/compile-errors/Cargo.toml @@ -2,7 +2,7 @@ name = "compile-errors" version = "0.1.0" authors = ["Benjamin Naecker "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/does-it-work/Cargo.toml b/tests/does-it-work/Cargo.toml index 6d7ecdb3..1fbeb273 100644 --- a/tests/does-it-work/Cargo.toml +++ b/tests/does-it-work/Cargo.toml @@ -3,7 +3,7 @@ name = "does-it-work" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/empty/Cargo.toml b/tests/empty/Cargo.toml index cbca0499..f1e4365f 100644 --- a/tests/empty/Cargo.toml +++ b/tests/empty/Cargo.toml @@ -3,7 +3,7 @@ name = "empty" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies.usdt] path = "../../usdt" diff --git a/tests/fake-cmd/Cargo.toml b/tests/fake-cmd/Cargo.toml index 19d28044..0f2fb7b3 100644 --- a/tests/fake-cmd/Cargo.toml +++ b/tests/fake-cmd/Cargo.toml @@ -3,7 +3,7 @@ name = "fake-cmd" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies] fake-lib = { path = "../fake-lib" } diff --git a/tests/fake-lib/Cargo.toml b/tests/fake-lib/Cargo.toml index 3d7064d4..7495713f 100644 --- a/tests/fake-lib/Cargo.toml +++ b/tests/fake-lib/Cargo.toml @@ -3,7 +3,7 @@ name = "fake-lib" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt", features = ["asm"] } diff --git a/tests/test-json/Cargo.toml b/tests/test-json/Cargo.toml index b39b5bae..ff61991a 100644 --- a/tests/test-json/Cargo.toml +++ b/tests/test-json/Cargo.toml @@ -2,7 +2,7 @@ name = "test-json" version = "0.1.0" authors = ["Benjamin Naecker "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/test-unique-id/Cargo.toml b/tests/test-unique-id/Cargo.toml index 01ddc42c..b9be45ac 100644 --- a/tests/test-unique-id/Cargo.toml +++ b/tests/test-unique-id/Cargo.toml @@ -2,7 +2,7 @@ name = "test-unique-id" version = "0.1.0" authors = ["Benjamin Naecker "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt" } diff --git a/tests/usize/Cargo.toml b/tests/usize/Cargo.toml index d17e9e6f..2b00c2bc 100644 --- a/tests/usize/Cargo.toml +++ b/tests/usize/Cargo.toml @@ -3,7 +3,7 @@ name = "usize" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt", features = ["asm"] } diff --git a/tests/zero-arg-probe/Cargo.toml b/tests/zero-arg-probe/Cargo.toml index 9215668d..449e039e 100644 --- a/tests/zero-arg-probe/Cargo.toml +++ b/tests/zero-arg-probe/Cargo.toml @@ -3,7 +3,7 @@ name = "zero-arg-probe" version = "0.1.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" [dependencies] usdt = { path = "../../usdt" } diff --git a/usdt-attr-macro/Cargo.toml b/usdt-attr-macro/Cargo.toml index fe888838..eb80944e 100644 --- a/usdt-attr-macro/Cargo.toml +++ b/usdt-attr-macro/Cargo.toml @@ -1,8 +1,8 @@ [package] name = "usdt-attr-macro" -version = "0.3.5" +version = "0.4.0" authors = ["Benjamin Naecker "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Procedural macro for generating Rust macros for USDT probes" repository = "https://github.com/oxidecomputer/usdt.git" @@ -16,7 +16,7 @@ proc-macro2 = "1" serde_tokenstream = "0.2" syn = { version = "2", features = ["full"] } quote = "1" -usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.3.5" } +usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.0" } [features] default = ["asm"] diff --git a/usdt-impl/Cargo.toml b/usdt-impl/Cargo.toml index d0885b43..ef211b36 100644 --- a/usdt-impl/Cargo.toml +++ b/usdt-impl/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "usdt-impl" -version = "0.3.5" +version = "0.4.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Main implementation crate for the USDT package" repository = "https://github.com/oxidecomputer/usdt.git" @@ -24,10 +24,10 @@ thread-id = "4" version_check = "0.9.4" [target.'cfg(target_os = "macos")'.dependencies] -dof = { path = "../dof", optional = true, default-features = false, version = "= 0.1.5" } +dof = { path = "../dof", optional = true, default-features = false, version = "= 0.2.0" } [target.'cfg(not(target_os = "macos"))'.dependencies] -dof = { path = "../dof", default-features = false, version = "= 0.1.5" } +dof = { path = "../dof", default-features = false, version = "= 0.2.0" } [features] default = ["asm"] diff --git a/usdt-macro/Cargo.toml b/usdt-macro/Cargo.toml index 6f029c0f..82f1dcbb 100644 --- a/usdt-macro/Cargo.toml +++ b/usdt-macro/Cargo.toml @@ -1,9 +1,9 @@ [package] name = "usdt-macro" -version = "0.3.5" +version = "0.4.0" authors = ["Benjamin Naecker ", "Adam H. Leventhal "] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Procedural macro for generating Rust macros for USDT probes" repository = "https://github.com/oxidecomputer/usdt.git" @@ -14,7 +14,7 @@ proc-macro2 = "1" serde_tokenstream = "0.2" syn = { version = "2", features = ["full"] } quote = "1" -usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.3.5" } +usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.0" } [features] default = ["asm"] diff --git a/usdt-tests-common/Cargo.toml b/usdt-tests-common/Cargo.toml index 4f97b271..2bc98668 100644 --- a/usdt-tests-common/Cargo.toml +++ b/usdt-tests-common/Cargo.toml @@ -3,6 +3,6 @@ name = "usdt-tests-common" version = "0.0.0" license = "Apache-2.0" description = "Common routines for integration tests in this repository" -edition = "2018" +edition = "2021" [dependencies] diff --git a/usdt/Cargo.toml b/usdt/Cargo.toml index 63f59a49..80462ebd 100644 --- a/usdt/Cargo.toml +++ b/usdt/Cargo.toml @@ -1,11 +1,11 @@ [package] name = "usdt" -version = "0.3.5" +version = "0.4.0" authors = [ "Benjamin Naecker ", "Adam H. Leventhal ", ] -edition = "2018" +edition = "2021" license = "Apache-2.0" description = "Dust your Rust with USDT probes" repository = "https://github.com/oxidecomputer/usdt.git" @@ -20,12 +20,12 @@ repository = "https://github.com/oxidecomputer/usdt.git" [dependencies] dtrace-parser = { path = "../dtrace-parser", optional = true, version = "= 0.1.14" } serde = "1" -usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.3.5", features = [ +usdt-impl = { path = "../usdt-impl", default-features = false, version = "= 0.4.0", features = [ "des", ] } -usdt-macro = { path = "../usdt-macro", default-features = false, version = "= 0.3.5" } -usdt-attr-macro = { path = "../usdt-attr-macro", default-features = false, version = "= 0.3.5" } -dof = { path = "../dof", features = ["des"] } +usdt-macro = { path = "../usdt-macro", default-features = false, version = "= 0.4.0" } +usdt-attr-macro = { path = "../usdt-attr-macro", default-features = false, version = "= 0.4.0" } +dof = { path = "../dof", features = ["des"], version = "= 0.2.0" } goblin = { version = "0.6", features = ["elf32", "elf64"] } memmap = { version = "0.7" } From fa3f240619f595dd64bd7a41a35c01b7ea189a29 Mon Sep 17 00:00:00 2001 From: Benjamin Naecker Date: Wed, 13 Dec 2023 19:15:19 +0000 Subject: [PATCH 2/3] Remove authors --- dof/Cargo.toml | 4 ---- dtrace-parser/Cargo.toml | 2 -- dusty/Cargo.toml | 1 - probe-test-attr/Cargo.toml | 1 - probe-test-build/Cargo.toml | 2 -- probe-test-macro/Cargo.toml | 2 -- tests/argument-types/Cargo.toml | 1 - tests/compile-errors/Cargo.toml | 1 - tests/does-it-work/Cargo.toml | 2 -- tests/empty/Cargo.toml | 2 -- tests/fake-cmd/Cargo.toml | 2 -- tests/fake-lib/Cargo.toml | 2 -- tests/test-json/Cargo.toml | 1 - tests/test-unique-id/Cargo.toml | 1 - tests/usize/Cargo.toml | 2 -- tests/zero-arg-probe/Cargo.toml | 2 -- usdt-attr-macro/Cargo.toml | 1 - usdt-impl/Cargo.toml | 2 -- usdt-macro/Cargo.toml | 2 -- usdt/Cargo.toml | 4 ---- 20 files changed, 37 deletions(-) diff --git a/dof/Cargo.toml b/dof/Cargo.toml index 2d4afd61..9ea79b32 100644 --- a/dof/Cargo.toml +++ b/dof/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "dof" version = "0.2.0" -authors = [ - "Benjamin Naecker ", - "Adam H. Leventhal ", -] edition = "2021" license = "Apache-2.0" description = "Tools to read and write the DTrace Object Format (DOF)" diff --git a/dtrace-parser/Cargo.toml b/dtrace-parser/Cargo.toml index da4e73f4..43db1279 100644 --- a/dtrace-parser/Cargo.toml +++ b/dtrace-parser/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "dtrace-parser" version = "0.1.14" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" license = "Apache-2.0" description = "Parse DTrace provider definitions into Rust" diff --git a/dusty/Cargo.toml b/dusty/Cargo.toml index aa86f173..0dcf8df0 100644 --- a/dusty/Cargo.toml +++ b/dusty/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "dusty" version = "0.1.0" -authors = ["Benjamin Naecker "] edition = "2021" description = "Tool to inspect USDT probe records in object files" license = "Apache-2.0" diff --git a/probe-test-attr/Cargo.toml b/probe-test-attr/Cargo.toml index 233713f8..d73431ca 100644 --- a/probe-test-attr/Cargo.toml +++ b/probe-test-attr/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "probe-test-attr" version = "0.1.0" -authors = ["Benjamin Naecker "] edition = "2021" [dependencies] diff --git a/probe-test-build/Cargo.toml b/probe-test-build/Cargo.toml index fcd74f21..54c14c99 100644 --- a/probe-test-build/Cargo.toml +++ b/probe-test-build/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "probe-test-build" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies] diff --git a/probe-test-macro/Cargo.toml b/probe-test-macro/Cargo.toml index 392fe047..34ed3c43 100644 --- a/probe-test-macro/Cargo.toml +++ b/probe-test-macro/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "probe-test-macro" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies] diff --git a/tests/argument-types/Cargo.toml b/tests/argument-types/Cargo.toml index bd73894b..2aff22ab 100644 --- a/tests/argument-types/Cargo.toml +++ b/tests/argument-types/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "argument-types" version = "0.1.0" -authors = ["Benjamin Naecker "] edition = "2021" [dependencies] diff --git a/tests/compile-errors/Cargo.toml b/tests/compile-errors/Cargo.toml index e8769842..86f8b757 100644 --- a/tests/compile-errors/Cargo.toml +++ b/tests/compile-errors/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "compile-errors" version = "0.1.0" -authors = ["Benjamin Naecker "] edition = "2021" [dependencies] diff --git a/tests/does-it-work/Cargo.toml b/tests/does-it-work/Cargo.toml index 1fbeb273..b5b9e661 100644 --- a/tests/does-it-work/Cargo.toml +++ b/tests/does-it-work/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "does-it-work" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies] diff --git a/tests/empty/Cargo.toml b/tests/empty/Cargo.toml index f1e4365f..a52f35c9 100644 --- a/tests/empty/Cargo.toml +++ b/tests/empty/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "empty" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies.usdt] diff --git a/tests/fake-cmd/Cargo.toml b/tests/fake-cmd/Cargo.toml index 0f2fb7b3..e4889531 100644 --- a/tests/fake-cmd/Cargo.toml +++ b/tests/fake-cmd/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "fake-cmd" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies] diff --git a/tests/fake-lib/Cargo.toml b/tests/fake-lib/Cargo.toml index 7495713f..3c0fd465 100644 --- a/tests/fake-lib/Cargo.toml +++ b/tests/fake-lib/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "fake-lib" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies] diff --git a/tests/test-json/Cargo.toml b/tests/test-json/Cargo.toml index ff61991a..88a4f2af 100644 --- a/tests/test-json/Cargo.toml +++ b/tests/test-json/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "test-json" version = "0.1.0" -authors = ["Benjamin Naecker "] edition = "2021" [dependencies] diff --git a/tests/test-unique-id/Cargo.toml b/tests/test-unique-id/Cargo.toml index b9be45ac..b8093532 100644 --- a/tests/test-unique-id/Cargo.toml +++ b/tests/test-unique-id/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "test-unique-id" version = "0.1.0" -authors = ["Benjamin Naecker "] edition = "2021" [dependencies] diff --git a/tests/usize/Cargo.toml b/tests/usize/Cargo.toml index 2b00c2bc..412599f9 100644 --- a/tests/usize/Cargo.toml +++ b/tests/usize/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "usize" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies] diff --git a/tests/zero-arg-probe/Cargo.toml b/tests/zero-arg-probe/Cargo.toml index 449e039e..c9d19b27 100644 --- a/tests/zero-arg-probe/Cargo.toml +++ b/tests/zero-arg-probe/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "zero-arg-probe" version = "0.1.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" [dependencies] diff --git a/usdt-attr-macro/Cargo.toml b/usdt-attr-macro/Cargo.toml index eb80944e..9692b6cc 100644 --- a/usdt-attr-macro/Cargo.toml +++ b/usdt-attr-macro/Cargo.toml @@ -1,7 +1,6 @@ [package] name = "usdt-attr-macro" version = "0.4.0" -authors = ["Benjamin Naecker "] edition = "2021" license = "Apache-2.0" description = "Procedural macro for generating Rust macros for USDT probes" diff --git a/usdt-impl/Cargo.toml b/usdt-impl/Cargo.toml index ef211b36..b1235997 100644 --- a/usdt-impl/Cargo.toml +++ b/usdt-impl/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "usdt-impl" version = "0.4.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" license = "Apache-2.0" description = "Main implementation crate for the USDT package" diff --git a/usdt-macro/Cargo.toml b/usdt-macro/Cargo.toml index 82f1dcbb..be8814ac 100644 --- a/usdt-macro/Cargo.toml +++ b/usdt-macro/Cargo.toml @@ -1,8 +1,6 @@ [package] name = "usdt-macro" version = "0.4.0" -authors = ["Benjamin Naecker ", - "Adam H. Leventhal "] edition = "2021" license = "Apache-2.0" description = "Procedural macro for generating Rust macros for USDT probes" diff --git a/usdt/Cargo.toml b/usdt/Cargo.toml index 80462ebd..bdeac5a7 100644 --- a/usdt/Cargo.toml +++ b/usdt/Cargo.toml @@ -1,10 +1,6 @@ [package] name = "usdt" version = "0.4.0" -authors = [ - "Benjamin Naecker ", - "Adam H. Leventhal ", -] edition = "2021" license = "Apache-2.0" description = "Dust your Rust with USDT probes" From 6f167e1e0e391f34b363b3407b8b2c680de91de5 Mon Sep 17 00:00:00 2001 From: Benjamin Naecker Date: Wed, 13 Dec 2023 19:19:55 +0000 Subject: [PATCH 3/3] Add missing derive feature --- dof/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dof/Cargo.toml b/dof/Cargo.toml index 9ea79b32..647f6382 100644 --- a/dof/Cargo.toml +++ b/dof/Cargo.toml @@ -11,7 +11,7 @@ goblin = { version = "0.6", optional = true, features = ["elf64", "mach64"] } pretty-hex = { version = "0.3", optional = true } thiserror = "1" zerocopy = "0.6" -serde = "1" +serde = { version = "1", features = [ "derive" ] } serde_json = "1" [features]