Skip to content

Commit

Permalink
Auto merge of #687 - detrumi:bump-dependencies, r=jackh726
Browse files Browse the repository at this point in the history
Bump dependencies and propagate tracing features

Fixes #686
  • Loading branch information
bors committed Feb 27, 2021
2 parents a925337 + 49e13f6 commit 4e3d174
Show file tree
Hide file tree
Showing 5 changed files with 69 additions and 59 deletions.
110 changes: 59 additions & 51 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ bench = []

[dependencies]
docopt = "1.1.0"
itertools = "0.9.0"
rustyline = "6.2.0"
salsa = "0.15.0"
itertools = "0.10.0"
rustyline = { version = "7.1.0", default-features = false }
salsa = "0.16.0"
serde = "1.0"
serde_derive = "1.0"

Expand Down
2 changes: 1 addition & 1 deletion chalk-integration/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ publish = false

[dependencies]
string_cache = "0.8.0"
salsa = "0.15.0"
salsa = "0.16.0"
tracing = "0.1"

chalk-derive = { version = "0.59.0-dev.0", path = "../chalk-derive" }
Expand Down
8 changes: 5 additions & 3 deletions chalk-recursive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,6 @@ readme = "README.md"
keywords = ["compiler", "traits", "prolog"]
edition = "2018"

[features]
default = []

[dependencies]
rustc-hash = { version = "1.1.0" }
tracing = "0.1"
Expand All @@ -22,3 +19,8 @@ chalk-solve = { version = "0.59.0-dev.0", path = "../chalk-solve" }

[dev-dependencies]
chalk-integration = { path = "../chalk-integration" }

[features]
default = ["tracing-full"]

tracing-full = ["chalk-solve/tracing-subscriber", "chalk-solve/tracing-tree"]
2 changes: 1 addition & 1 deletion chalk-solve/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ edition = "2018"

[dependencies]
ena = "0.14.0"
itertools = "0.9.0"
itertools = "0.10.0"
petgraph = "0.5.1"
tracing = "0.1"
tracing-subscriber = { version = "0.2", optional = true }
Expand Down

0 comments on commit 4e3d174

Please sign in to comment.