Skip to content

Commit

Permalink
Dependency cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
sfackler committed Dec 5, 2016
1 parent d3492a5 commit f106aa6
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 31 deletions.
10 changes: 3 additions & 7 deletions phf_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,6 @@ description = "Codegen library for PHF types"
repository = "https://github.com/sfackler/rust-phf"
documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf_codegen"

[dependencies.phf_generator]
path = "../phf_generator"
version = "=0.7.20"

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.7.20"
[dependencies]
phf_generator = { version = "=0.7.20", path = "../phf_generator" }
phf_shared = { version = "=0.7.20", path = "../phf_shared" }
5 changes: 1 addition & 4 deletions phf_generator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,4 @@ documentation = "https://sfackler.github.io/rust-phf/doc/v0.7.20/phf_generator"

[dependencies]
rand = "0.3"

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.7.20"
phf_shared = { version = "=0.7.20", path = "../phf_shared" }
28 changes: 8 additions & 20 deletions phf_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,13 @@ test = false
stats = ["time"]
unicase_support = ["unicase", "phf_shared/unicase"]

[dependencies.phf_generator]
path = "../phf_generator"
version = "=0.7.20"
[dependencies]
phf_generator = { version = "=0.7.20", path = "../phf_generator" }
phf_shared = { version = "=0.7.20", path = "../phf_shared" }
time = { version = "0.1", optional = true }
unicase = { version = "1.4", optional = true }

[dependencies.phf_shared]
path = "../phf_shared"
version = "=0.7.20"
[dev-dependencies]
phf = { version = "0.7.20", path = "../phf" }
compiletest_rs = "0.2"

[dependencies.time]
version = "0.1"
optional = true

[dependencies.unicase]
version = "1.4"
optional = true

[dev-dependencies.phf]
path = "../phf"
version = "=0.7.20"

[dev-dependencies.compiletest_rs]
version = "0.2"

0 comments on commit f106aa6

Please sign in to comment.