diff --git a/identified_vec/Cargo.toml b/identified_vec/Cargo.toml index a692f19..5014371 100644 --- a/identified_vec/Cargo.toml +++ b/identified_vec/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" authors = ["Alexander Cyon "] 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"] diff --git a/identified_vec_macros/Cargo.toml b/identified_vec_macros/Cargo.toml index 62c03bb..01b1e74 100644 --- a/identified_vec_macros/Cargo.toml +++ b/identified_vec_macros/Cargo.toml @@ -3,6 +3,18 @@ name = "identified_vec_macros" version = "0.1.5" edition = "2021" authors = ["Alexander Cyon "] +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" }