Skip to content

Commit

Permalink
Update all dependencies
Browse files Browse the repository at this point in the history
This removes quite a few duplicates, especially syn and quote
  • Loading branch information
Eijebong authored and arai-a committed Mar 7, 2020
1 parent 06c1bef commit 4261ca2
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ license = "MIT"
build = "build.rs"

[build-dependencies]
which = "^2.0"
which = "3.1.1"

[dependencies]
binjs_generic = { path = "crates/binjs_generic", version = "*" }
Expand All @@ -19,19 +19,19 @@ binjs_meta = { path = "crates/binjs_meta", version = "*" }
binjs_shared = { path = "crates/binjs_shared", version = "*" }
bincode = "^1.0"
clap = "^2.0"
derive_more = "^0.13"
env_logger = "^0.6"
derive_more = "0.99.3"
env_logger = "0.7.1"
itertools = "^0.8"
serde = { version = "^1.0", features = ["derive"] }
serde_json = { version = "^1.0.38", features = ["unbounded_depth"] }
log = "^0.4"
which = "^2.0"
which = "3.1.1"

[dev-dependencies]
bencher = "^0.1"
glob = "^0.2"
glob = "0.3.0"
lazy_static = "^1.2"
rand = "^0.6"
rand = { version="0.7.3", features=["small_rng"] }
separator = "^0.4"
tempdir = "^0.3"
test-logger = { version = "^0.1", git = "https://github.com/RReverser/test-logger" }
Expand Down
2 changes: 1 addition & 1 deletion crates/binjs_generate_library/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ binjs_meta = { path = "../binjs_meta/", version = "*" }
itertools = "^0.8"

[dev-dependencies]
env_logger = "^0.6"
env_logger = "0.7.1"
log = "^0.4"
clap = "^2.0"
yaml-rust = "^0.4"
2 changes: 1 addition & 1 deletion crates/binjs_generic/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ multistream = []
[dependencies]
binjs_meta = { path = "../binjs_meta", version = "*" }
serde_json = { version = "^1.0.38", features = ["unbounded_depth"] }
rand = "^0.6"
rand = "0.7.3"

[build-dependencies]
binjs_generate_library = { path = "../binjs_generate_library", version = "*" }
Expand Down
8 changes: 4 additions & 4 deletions crates/binjs_io/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,21 @@ binjs_meta = { path = "../binjs_meta", version = "*" }
binjs_shared = { path = "../binjs_shared", version = "*" }
brotli = "^3.0"
clap = "^2.32"
derive_more = "^0.13"
derive_more = "0.99.3"
flate2 = "^1.0"
itertools = "^0.8"
serde_json = { version = "^1.0.38", features = ["unbounded_depth"] }
lzw = "^0.10"
log = "^0.4"
rand = "^0.6"
rand = "0.7.3"
range-encoding = "^0.2"
serde = { version = "^1.0", features = ["derive", "rc"] }
smallvec = "^0.6"
smallvec = "1.2.0"
vec_map = "^0.8"
xml-rs = "^0.8"

[dev-dependencies]
env_logger = "^0.6"
env_logger = "0.7.1"
tempdir = "^0.3"

[features]
Expand Down

0 comments on commit 4261ca2

Please sign in to comment.