-
Notifications
You must be signed in to change notification settings - Fork 1
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
cargo toml improvements #16
Conversation
edition = "2021" | ||
authors = ["[email protected]"] | ||
description = "Provides verification of server-side authentication for applications using Passage Passkey Flex" | ||
homepage = "https://github.com/passageidentity/passage-flex-rust" | ||
repository = "https://github.com/passageidentity/passage-flex-rust" | ||
readme = "README.md" | ||
license = "MIT" | ||
include = ["/src", "README.md"] | ||
|
||
[dependencies] |
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.
On the changes below:
Leaving off the caret is a simplified equivalent syntax to using caret requirements. While caret requirements are the default, it is recommended to use the simplified syntax when possible.
log = "^1.2.3" is exactly equivalent to log = "1.2.3".
(docs)
edition = "2021" | ||
authors = ["[email protected]"] | ||
description = "Provides verification of server-side authentication for applications using Passage Passkey Flex" | ||
homepage = "https://github.com/passageidentity/passage-flex-rust" | ||
repository = "https://github.com/passageidentity/passage-flex-rust" | ||
readme = "README.md" | ||
license = "MIT" | ||
include = ["/src", "README.md"] |
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.
Overview of Changes in this PR
Links
The exclude and include fields in Cargo.toml
Caret requirements