-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #10 from Sajjon/cargo_toml
try fix cargo warnings
- Loading branch information
Showing
2 changed files
with
13 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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"] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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" } | ||
|