Skip to content

Commit

Permalink
add missing informations to Cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
vic1707 committed Jul 9, 2024
1 parent 12db563 commit 800777f
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rustflags = [
"-Dclippy::pedantic",
"-Dclippy::restriction",
"-Dclippy::nursery",
# "-Dclippy::cargo",
"-Dclippy::cargo",
## Conflicts ##
"-Aclippy::blanket_clippy_restriction_lints", # clippy::restriction - can't enable clippy::restriction if this is enabled
"-Aclippy::implicit_return", # clippy::needless-return - remove return keyword when not needed
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 18 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
[package]
name = "serde-versioning"
version = "0.0.0"
version = "0.0.1"
edition = "2021"
authors = ["Victor LEFEBVRE <contact@vic1707.xyz>"]
description = "Add versioning support to `serde`'s `Deserialize` derive macro."
# documentation = "https://docs.rs/serde-versioning"
homepage = "https://github.com/vic1707/serde-versioning"
license = "WTFPL"
readme = "README.md"
repository = "https://github.com/vic1707/serde-versioning"
include = [
"src/**/*",
"Cargo.toml",
"Cargo.lock",
"README",
"LICENSE",
]
categories = ["encoding", "no-std", "no-std::no-alloc"]
keywords = ["serde", "versioning", "deserialization", "serialization", "no_std"]
rust-version = "1.65.0"

[lib]
proc-macro = true
Expand Down

0 comments on commit 800777f

Please sign in to comment.