Skip to content

Commit

Permalink
Merge pull request #10 from Sajjon/cargo_toml
Browse files Browse the repository at this point in the history
try fix cargo warnings
  • Loading branch information
Sajjon authored Dec 16, 2023
2 parents 64cf8a4 + 1d31c14 commit 7103dbe
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
2 changes: 1 addition & 1 deletion identified_vec/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ edition = "2021"
authors = ["Alexander Cyon <[email protected]>"]
description = "Like HashSet but retaining INSERTION order and without `Hash` requirement on the Element type."
license = "MIT"
readme = "README.md"
readme = "../README.md"
repository = "https://github.com/Sajjon/identified_vec"
keywords = ["identifiable", "vec", "orderset", "set", "hashset"]
categories = ["data-structures"]
Expand Down
12 changes: 12 additions & 0 deletions identified_vec_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@ name = "identified_vec_macros"
version = "0.1.5"
edition = "2021"
authors = ["Alexander Cyon <[email protected]>"]
description = "A macro which allows you to create IdentifiedVecOf newtypes which act as if they were IdentifiedVecOf."
license = "MIT"
readme = "../README.md"
repository = "https://github.com/Sajjon/identified_vec"
keywords = [
"identified_vec_of",
"newtype_identified_vec",
"is_identifiable_vec_of_via",
"identifiable",
"set",
]
categories = ["data-structures"]

[dependencies]
identified_vec = { path = "../identified_vec" }
Expand Down

0 comments on commit 7103dbe

Please sign in to comment.