-
Notifications
You must be signed in to change notification settings - Fork 96
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add recommended metadata to Cargo.toml #107
Conversation
The Rust API guidelines recommend a set of metadata values: https://rust-lang-nursery.github.io/api-guidelines/documentation.html#c-metadata
There's also an optional " |
I think it's better to link home page to GitHub org page
…On Wed, Jul 4, 2018, 1:48 PM Andreas Fackler ***@***.***> wrote:
There's also an optional "homepage" link; not sure whether it would make
sense to link to e.g. https://poa.network/ from the crates.io page,
though.
—
You are receiving this because your review was requested.
Reply to this email directly, view it on GitHub
<#107 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AAZ6tKvo6FeFyRkM8feMqJIH3tVC0Htbks5uDKuZgaJpZM4VCYzQ>
.
|
OK, then we don't have to add the " |
Cargo.toml
Outdated
@@ -2,6 +2,15 @@ | |||
name = "hbbft" | |||
version = "0.1.0" | |||
authors = ["Vladimir Komendantskiy <[email protected]>"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's update authors
too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Should we add all of us individually, or rather a single POA email address?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You are right, as the team grows, we might need to follow the example of other projects, e.g.,
authors = ["Parity Technologies <[email protected]>"]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@igorbarinov: Is there some email address like that, which we should use as "the author"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I extended the authors list.
The Rust API guidelines recommend a set of metadata values:
https://rust-lang-nursery.github.io/api-guidelines/documentation.html#c-metadata
(See #108)