diff --git a/phf/Cargo.toml b/phf/Cargo.toml index e131b34c..d5a92440 100644 --- a/phf/Cargo.toml +++ b/phf/Cargo.toml @@ -1,9 +1,11 @@ [package] name = "phf" authors = ["Steven Fackler "] -version = "0.3.0" +version = "0.4.0" license = "MIT" description = "Runtime support for perfect hash function data structures" +repository = "https://github.com/sfackler/rust-phf" +documentation = "https://sfackler.github.io/doc/phf" [lib] name = "phf" @@ -12,8 +14,8 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "=0.3.0" +version = "=0.4.0" [dev_dependencies.phf_mac] path = "../phf_mac" -version = "=0.3.0" +version = "=0.4.0" diff --git a/phf_mac/Cargo.toml b/phf_mac/Cargo.toml index 3a5c4900..d3f19ba8 100644 --- a/phf_mac/Cargo.toml +++ b/phf_mac/Cargo.toml @@ -1,9 +1,10 @@ [package] name = "phf_mac" authors = ["Steven Fackler "] -version = "0.3.0" +version = "0.4.0" license = "MIT" description = "Compiler plugin for perfect hash function data structures" +repository = "https://github.com/sfackler/rust-phf" [lib] name = "phf_mac" @@ -13,7 +14,7 @@ test = false [dependencies.phf_shared] path = "../phf_shared" -version = "=0.3.0" +version = "=0.4.0" [dependencies] time = "0.1" diff --git a/phf_shared/Cargo.toml b/phf_shared/Cargo.toml index fcac34fe..15765d02 100644 --- a/phf_shared/Cargo.toml +++ b/phf_shared/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "phf_shared" authors = ["Steven Fackler "] -version = "0.3.0" +version = "0.4.0" license = "MIT" description = "Support code shared by phf and phf_mac"