diff --git a/Cargo.toml b/Cargo.toml index 8ffab557ac..f9fbb41bb9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -15,14 +15,15 @@ members = ["unsafe-fields", "zerocopy-derive"] [workspace.package] -# Inherited by zerocopy and unsafe-fields. +# Inherited by workspace members. rust-version = "1.65.0" +authors = ["Joshua Liebow-Feeser ", "Jack Wrenn "] [package] edition = "2021" name = "zerocopy" version = "0.9.0-alpha.0" -authors = ["Joshua Liebow-Feeser "] +authors = { workspace = true } description = "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to." categories = ["embedded", "encoding", "no-std::no-alloc", "parsing", "rust-patterns"] keywords = ["cast", "convert", "transmute", "transmutation", "type-punning"] diff --git a/README.md b/README.md index b419c05eda..658879908f 100644 --- a/README.md +++ b/README.md @@ -203,6 +203,14 @@ Zerocopy uses [GitHub Releases]. [GitHub Releases]: https://github.com/google/zerocopy/releases +## Thanks + +Zerocopy is maintained by engineers at Google and Amazon with help from +[many wonderful contributors][contributors]. Thank you to everyone who has +lent a hand in making Rust a little more secure! + +[contributors]: https://github.com/google/zerocopy/graphs/contributors + ## Disclaimer Disclaimer: This is not an officially supported Google product. diff --git a/src/lib.rs b/src/lib.rs index c831a91f18..ee28450019 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -202,6 +202,14 @@ //! Zerocopy uses [GitHub Releases]. //! //! [GitHub Releases]: https://github.com/google/zerocopy/releases +//! +//! # Thanks +//! +//! Zerocopy is maintained by engineers at Google and Amazon with help from +//! [many wonderful contributors][contributors]. Thank you to everyone who has +//! lent a hand in making Rust a little more secure! +//! +//! [contributors]: https://github.com/google/zerocopy/graphs/contributors // Sometimes we want to use lints which were added after our MSRV. // `unknown_lints` is `warn` by default and we deny warnings in CI, so without diff --git a/zerocopy-derive/Cargo.toml b/zerocopy-derive/Cargo.toml index d348ef482e..b9aff0bf0c 100644 --- a/zerocopy-derive/Cargo.toml +++ b/zerocopy-derive/Cargo.toml @@ -10,7 +10,7 @@ edition = "2021" name = "zerocopy-derive" version = "0.9.0-alpha.0" -authors = ["Joshua Liebow-Feeser "] +authors = { workspace = true } description = "Custom derive for traits from the zerocopy crate" license = "BSD-2-Clause OR Apache-2.0 OR MIT" repository = "https://github.com/google/zerocopy"