aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
diff options
context:
space:
mode:
authorFlorian Diebold <[email protected]>2020-07-10 17:30:32 +0100
committerFlorian Diebold <[email protected]>2020-07-12 19:12:01 +0100
commitc82f5379de49344eb418cc6aaf5bf8c35bc4aaef (patch)
tree7c060a12fcdb8cbd2054e064257602374c3df0cb /Cargo.lock
parent209c492432c15b017f99dba06d5937389c1f9546 (diff)
Enable Chalk tracing in hir_ty tests
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock59
1 files changed, 58 insertions, 1 deletions
diff --git a/Cargo.lock b/Cargo.lock
index d6635640f..8085f29d7 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -34,6 +34,15 @@ dependencies = [
34] 34]
35 35
36[[package]] 36[[package]]
37name = "ansi_term"
38version = "0.12.1"
39source = "registry+https://github.com/rust-lang/crates.io-index"
40checksum = "d52a9bb7ec0cf484c551830a7ce27bd20d67eac647e1befb56b0be4ee39a55d2"
41dependencies = [
42 "winapi 0.3.9",
43]
44
45[[package]]
37name = "anyhow" 46name = "anyhow"
38version = "1.0.31" 47version = "1.0.31"
39source = "registry+https://github.com/rust-lang/crates.io-index" 48source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -52,6 +61,17 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
52checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8" 61checksum = "cff77d8686867eceff3105329d4698d96c2391c176d5d03adc90c7389162b5b8"
53 62
54[[package]] 63[[package]]
64name = "atty"
65version = "0.2.14"
66source = "registry+https://github.com/rust-lang/crates.io-index"
67checksum = "d9b39be18770d11421cdb1b9947a45dd3f37e93092cbf377614828a319d5fee8"
68dependencies = [
69 "hermit-abi",
70 "libc",
71 "winapi 0.3.9",
72]
73
74[[package]]
55name = "autocfg" 75name = "autocfg"
56version = "1.0.0" 76version = "1.0.0"
57source = "registry+https://github.com/rust-lang/crates.io-index" 77source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -972,6 +992,16 @@ dependencies = [
972] 992]
973 993
974[[package]] 994[[package]]
995name = "quanta"
996version = "0.3.1"
997source = "registry+https://github.com/rust-lang/crates.io-index"
998checksum = "f4f7a1905379198075914bc93d32a5465c40474f90a078bb13439cb00c547bcc"
999dependencies = [
1000 "libc",
1001 "winapi 0.3.9",
1002]
1003
1004[[package]]
975name = "quote" 1005name = "quote"
976version = "1.0.7" 1006version = "1.0.7"
977source = "registry+https://github.com/rust-lang/crates.io-index" 1007source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1120,6 +1150,9 @@ dependencies = [
1120 "smallvec", 1150 "smallvec",
1121 "stdx", 1151 "stdx",
1122 "test_utils", 1152 "test_utils",
1153 "tracing",
1154 "tracing-subscriber",
1155 "tracing-tree",
1123] 1156]
1124 1157
1125[[package]] 1158[[package]]
@@ -1723,6 +1756,15 @@ dependencies = [
1723] 1756]
1724 1757
1725[[package]] 1758[[package]]
1759name = "termcolor"
1760version = "1.1.0"
1761source = "registry+https://github.com/rust-lang/crates.io-index"
1762checksum = "bb6bfa289a4d7c5766392812c0a1f4c1ba45afa1ad47803c11e1f407d846d75f"
1763dependencies = [
1764 "winapi-util",
1765]
1766
1767[[package]]
1726name = "terminal_size" 1768name = "terminal_size"
1727version = "0.1.13" 1769version = "0.1.13"
1728source = "registry+https://github.com/rust-lang/crates.io-index" 1770source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -1856,7 +1898,7 @@ version = "0.2.7"
1856source = "registry+https://github.com/rust-lang/crates.io-index" 1898source = "registry+https://github.com/rust-lang/crates.io-index"
1857checksum = "c72c8cf3ec4ed69fef614d011a5ae4274537a8a8c59133558029bd731eb71659" 1899checksum = "c72c8cf3ec4ed69fef614d011a5ae4274537a8a8c59133558029bd731eb71659"
1858dependencies = [ 1900dependencies = [
1859 "ansi_term", 1901 "ansi_term 0.11.0",
1860 "chrono", 1902 "chrono",
1861 "lazy_static", 1903 "lazy_static",
1862 "matchers", 1904 "matchers",
@@ -1871,6 +1913,21 @@ dependencies = [
1871] 1913]
1872 1914
1873[[package]] 1915[[package]]
1916name = "tracing-tree"
1917version = "0.1.3"
1918source = "registry+https://github.com/rust-lang/crates.io-index"
1919checksum = "e0a389731c9e6c56fef11e438e5b6afae861d5bc301c8b4bdca8d19f0e830d82"
1920dependencies = [
1921 "ansi_term 0.12.1",
1922 "atty",
1923 "chrono",
1924 "quanta",
1925 "termcolor",
1926 "tracing",
1927 "tracing-subscriber",
1928]
1929
1930[[package]]
1874name = "unicode-bidi" 1931name = "unicode-bidi"
1875version = "0.3.4" 1932version = "0.3.4"
1876source = "registry+https://github.com/rust-lang/crates.io-index" 1933source = "registry+https://github.com/rust-lang/crates.io-index"