Skip to content

Commit c3aaddc

Browse files
authored
[readme] Explain maintenance, thank contributors (#2360) (#2363)
Add jswrenn as an author in `Cargo.toml` files. gherrit-pr-id: I50cc283e73af52a110de292c7fd92426fea21e26
1 parent 7ed40f1 commit c3aaddc

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,15 @@
1515
members = ["unsafe-fields", "zerocopy-derive"]
1616

1717
[workspace.package]
18-
# Inherited by zerocopy and unsafe-fields.
18+
# Inherited by workspace members.
1919
rust-version = "1.65.0"
20+
authors = ["Joshua Liebow-Feeser <[email protected]>", "Jack Wrenn <[email protected]>"]
2021

2122
[package]
2223
edition = "2021"
2324
name = "zerocopy"
2425
version = "0.9.0-alpha.0"
25-
authors = ["Joshua Liebow-Feeser <[email protected]>"]
26+
authors = { workspace = true }
2627
description = "Zerocopy makes zero-cost memory manipulation effortless. We write \"unsafe\" so you don't have to."
2728
categories = ["embedded", "encoding", "no-std::no-alloc", "parsing", "rust-patterns"]
2829
keywords = ["cast", "convert", "transmute", "transmutation", "type-punning"]

README.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -203,6 +203,14 @@ Zerocopy uses [GitHub Releases].
203203

204204
[GitHub Releases]: https://github.com/google/zerocopy/releases
205205

206+
## Thanks
207+
208+
Zerocopy is maintained by engineers at Google and Amazon with help from
209+
[many wonderful contributors][contributors]. Thank you to everyone who has
210+
lent a hand in making Rust a little more secure!
211+
212+
[contributors]: https://github.com/google/zerocopy/graphs/contributors
213+
206214
## Disclaimer
207215

208216
Disclaimer: This is not an officially supported Google product.

src/lib.rs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -202,6 +202,14 @@
202202
//! Zerocopy uses [GitHub Releases].
203203
//!
204204
//! [GitHub Releases]: https://github.com/google/zerocopy/releases
205+
//!
206+
//! # Thanks
207+
//!
208+
//! Zerocopy is maintained by engineers at Google and Amazon with help from
209+
//! [many wonderful contributors][contributors]. Thank you to everyone who has
210+
//! lent a hand in making Rust a little more secure!
211+
//!
212+
//! [contributors]: https://github.com/google/zerocopy/graphs/contributors
205213
206214
// Sometimes we want to use lints which were added after our MSRV.
207215
// `unknown_lints` is `warn` by default and we deny warnings in CI, so without

zerocopy-derive/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
edition = "2021"
1111
name = "zerocopy-derive"
1212
version = "0.9.0-alpha.0"
13-
authors = ["Joshua Liebow-Feeser <[email protected]>"]
13+
authors = { workspace = true }
1414
description = "Custom derive for traits from the zerocopy crate"
1515
license = "BSD-2-Clause OR Apache-2.0 OR MIT"
1616
repository = "https://github.com/google/zerocopy"

0 commit comments

Comments
 (0)