Skip to content

Commit f01d8b9

Browse files
committed
Increase version numbers
1 parent 3fbed17 commit f01d8b9

File tree

3 files changed

+69
-27
lines changed

3 files changed

+69
-27
lines changed

Cargo.lock

Lines changed: 66 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -435,59 +435,48 @@ dependencies = [
435435

436436
[[package]]
437437
name = "chalk-derive"
438-
version = "0.14.0"
438+
version = "0.19.0"
439439
source = "registry+https://github.com/rust-lang/crates.io-index"
440-
checksum = "d463e01905d607e181de72e8608721d3269f29176c9a14ce037011316ae7131d"
440+
checksum = "654c611946ba2629c5028cb7708687af975faf2c29d731824cb294c873df4697"
441441
dependencies = [
442442
"proc-macro2",
443443
"quote",
444444
"syn",
445445
"synstructure",
446446
]
447447

448-
[[package]]
449-
name = "chalk-engine"
450-
version = "0.14.0"
451-
source = "registry+https://github.com/rust-lang/crates.io-index"
452-
checksum = "efaf428f5398d36284f79690cf988762b7c091249f50a6c11db613a46c057000"
453-
dependencies = [
454-
"chalk-derive",
455-
"chalk-ir",
456-
"rustc-hash",
457-
"tracing",
458-
]
459-
460448
[[package]]
461449
name = "chalk-ir"
462-
version = "0.14.0"
450+
version = "0.19.0"
463451
source = "registry+https://github.com/rust-lang/crates.io-index"
464-
checksum = "fd3fdc1e9f68498ffe80f4a23b0b95f1ca6fb21d5a4c9b0c085fab3ca712bdbe"
452+
checksum = "0a5341fbc654ca886b73b804a36aebf0e621057ccc1a68e9815b5b39b3ac9ae8"
465453
dependencies = [
466454
"chalk-derive",
467455
"lazy_static",
468456
]
469457

470458
[[package]]
471459
name = "chalk-solve"
472-
version = "0.14.0"
460+
version = "0.19.0"
473461
source = "registry+https://github.com/rust-lang/crates.io-index"
474-
checksum = "5b9fd4102807b7ebe8fb034fa0f488c5656e1966d3261b558b81a08d519cdb29"
462+
checksum = "281f82facd2538997fbe52132b1941ed213d266748215c31d15f62a8664429ad"
475463
dependencies = [
476464
"chalk-derive",
477-
"chalk-engine",
478465
"chalk-ir",
479466
"ena",
480467
"itertools 0.9.0",
481468
"petgraph",
482469
"rustc-hash",
483470
"tracing",
471+
"tracing-subscriber",
472+
"tracing-tree",
484473
]
485474

486475
[[package]]
487476
name = "chrono"
488-
version = "0.4.6"
477+
version = "0.4.13"
489478
source = "registry+https://github.com/rust-lang/crates.io-index"
490-
checksum = "45912881121cb26fad7c38c17ba7daa18764771836b34fab7d3fbd93ed633878"
479+
checksum = "c74d84029116787153e02106bf53e66828452a4b325cc8652b788b5967c0a0b6"
491480
dependencies = [
492481
"num-integer",
493482
"num-traits",
@@ -4630,12 +4619,11 @@ version = "0.1.0"
46304619

46314620
[[package]]
46324621
name = "time"
4633-
version = "0.1.42"
4622+
version = "0.1.43"
46344623
source = "registry+https://github.com/rust-lang/crates.io-index"
4635-
checksum = "db8dcfca086c1143c9270ac42a2bbd8a7ee477b78ac8e45b19abfb0cbede4b6f"
4624+
checksum = "ca8a50ef2360fbd1eeb0ecd46795a87a19024eb4b53c5dc916ca1fd95fe62438"
46364625
dependencies = [
46374626
"libc",
4638-
"redox_syscall",
46394627
"winapi 0.3.8",
46404628
]
46414629

@@ -4935,6 +4923,60 @@ dependencies = [
49354923
"tracing-core",
49364924
]
49374925

4926+
name = "tracing-log"
4927+
version = "0.1.1"
4928+
source = "registry+https://github.com/rust-lang/crates.io-index"
4929+
checksum = "5e0f8c7178e13481ff6765bd169b33e8d554c5d2bbede5e32c356194be02b9b9"
4930+
dependencies = [
4931+
"lazy_static",
4932+
"log",
4933+
"tracing-core",
4934+
]
4935+
4936+
[[package]]
4937+
name = "tracing-serde"
4938+
version = "0.1.1"
4939+
source = "registry+https://github.com/rust-lang/crates.io-index"
4940+
checksum = "b6ccba2f8f16e0ed268fc765d9b7ff22e965e7185d32f8f1ec8294fe17d86e79"
4941+
dependencies = [
4942+
"serde",
4943+
"tracing-core",
4944+
]
4945+
4946+
[[package]]
4947+
name = "tracing-subscriber"
4948+
version = "0.2.9"
4949+
source = "registry+https://github.com/rust-lang/crates.io-index"
4950+
checksum = "e4f5dd7095c2481b7b3cbed71c8de53085fb3542bc3c2b4c73cba43e8f11c7ba"
4951+
dependencies = [
4952+
"ansi_term 0.12.1",
4953+
"chrono",
4954+
"lazy_static",
4955+
"matchers",
4956+
"regex",
4957+
"serde",
4958+
"serde_json",
4959+
"sharded-slab",
4960+
"smallvec 1.4.0",
4961+
"tracing-core",
4962+
"tracing-log",
4963+
"tracing-serde",
4964+
]
4965+
4966+
[[package]]
4967+
name = "tracing-tree"
4968+
version = "0.1.4"
4969+
source = "registry+https://github.com/rust-lang/crates.io-index"
4970+
checksum = "37ee7f0f53ed2093971a698db799ef56a2dfd89b32e3aeb5165f0e637a02be04"
4971+
dependencies = [
4972+
"ansi_term 0.12.1",
4973+
"atty",
4974+
"chrono",
4975+
"termcolor",
4976+
"tracing",
4977+
"tracing-subscriber",
4978+
]
4979+
49384980
[[package]]
49394981
name = "typenum"
49404982
version = "1.12.0"

src/librustc_middle/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ rustc_serialize = { path = "../librustc_serialize" }
2929
rustc_ast = { path = "../librustc_ast" }
3030
rustc_span = { path = "../librustc_span" }
3131
byteorder = { version = "1.3" }
32-
chalk-ir = "0.14.0"
32+
chalk-ir = "0.19.0"
3333
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
3434
measureme = "0.7.1"
3535
rustc_session = { path = "../librustc_session" }

src/librustc_traits/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ rustc_hir = { path = "../librustc_hir" }
1616
rustc_index = { path = "../librustc_index" }
1717
rustc_ast = { path = "../librustc_ast" }
1818
rustc_span = { path = "../librustc_span" }
19-
chalk-ir = "0.14.0"
20-
chalk-solve = "0.14.0"
19+
chalk-ir = "0.19.0"
20+
chalk-solve = "0.19.0"
2121
smallvec = { version = "1.0", features = ["union", "may_dangle"] }
2222
rustc_infer = { path = "../librustc_infer" }
2323
rustc_trait_selection = { path = "../librustc_trait_selection" }

0 commit comments

Comments
 (0)