mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
Bump indoc from 1.0.6 to 1.0.7
Bumps [indoc](https://github.com/dtolnay/indoc) from 1.0.6 to 1.0.7. - [Release notes](https://github.com/dtolnay/indoc/releases) - [Commits](https://github.com/dtolnay/indoc/compare/1.0.6...1.0.7) --- updated-dependencies: - dependency-name: indoc dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
parent
0d96f4fc7d
commit
4c6ad52c47
15 changed files with 16 additions and 16 deletions
4
Cargo.lock
generated
4
Cargo.lock
generated
|
@ -1829,9 +1829,9 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "indoc"
|
||||
version = "1.0.6"
|
||||
version = "1.0.7"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "05a0bd019339e5d968b37855180087b7b9d512c5046fbd244cf8c95687927d6e"
|
||||
checksum = "adab1eaa3408fb7f0c777a73e7465fd5656136fc93b670eb6df3c88c2c1344e3"
|
||||
|
||||
[[package]]
|
||||
name = "inkwell"
|
||||
|
|
|
@ -29,7 +29,7 @@ ven_graph = { path = "../vendor/pathfinding" }
|
|||
libc = "0.2.106"
|
||||
|
||||
[dev-dependencies]
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
|
||||
[target.'cfg(windows)'.dependencies]
|
||||
winapi = { version = "0.3.9", features = ["memoryapi"]}
|
||||
|
|
|
@ -88,7 +88,7 @@ wasmer = { version = "2.2.1", optional = true, default-features = false, feature
|
|||
wasmer-wasi = "2.2.1"
|
||||
pretty_assertions = "1.0.0"
|
||||
roc_test_utils = { path = "../test_utils" }
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
serial_test = "0.9.0"
|
||||
criterion = { git = "https://github.com/Anton-4/criterion.rs"}
|
||||
cli_utils = { path = "../cli_utils" }
|
||||
|
|
|
@ -20,4 +20,4 @@ bitvec = "1"
|
|||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "1.0.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
|
|
|
@ -14,6 +14,6 @@ bumpalo = { version = "3.8.0", features = ["collections"] }
|
|||
|
||||
[dev-dependencies]
|
||||
pretty_assertions = "1.0.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
roc_test_utils = { path = "../../test_utils" }
|
||||
walkdir = "2.3.2"
|
||||
|
|
|
@ -34,5 +34,5 @@ crossbeam = "0.8.1"
|
|||
[dev-dependencies]
|
||||
pretty_assertions = "1.0.0"
|
||||
maplit = "1.0.2"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
roc_test_utils = { path = "../../test_utils" }
|
||||
|
|
|
@ -18,7 +18,7 @@ encode_unicode = "1.0.0"
|
|||
[dev-dependencies]
|
||||
criterion = { git = "https://github.com/Anton-4/criterion.rs", features = ["html_reports"]}
|
||||
pretty_assertions = "1.0.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
quickcheck = "1.0.3"
|
||||
quickcheck_macros = "1.0.0"
|
||||
roc_test_utils = { path = "../../test_utils" }
|
||||
|
|
|
@ -32,7 +32,7 @@ roc_target = { path = "../roc_target" }
|
|||
roc_reporting = { path = "../../reporting" }
|
||||
roc_derive = { path = "../derive", features = ["debug-derived-symbols"] }
|
||||
pretty_assertions = "1.0.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
tempfile = "3.2.0"
|
||||
bumpalo = { version = "3.8.0", features = ["collections"] }
|
||||
regex = "1.5.5"
|
||||
|
|
|
@ -26,7 +26,7 @@ roc_solve = { path = "../solve" }
|
|||
roc_debug_flags = { path = "../debug_flags" }
|
||||
bumpalo = { version = "3.8.0", features = ["collections"] }
|
||||
lazy_static = "1.4.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
ven_pretty = { path = "../../vendor/pretty" }
|
||||
pretty_assertions = "1.0.0"
|
||||
insta = "1.18.2"
|
||||
|
|
|
@ -43,7 +43,7 @@ inkwell = { path = "../../vendor/inkwell" }
|
|||
target-lexicon = "0.12.3"
|
||||
libloading = "0.7.1"
|
||||
tempfile = "3.2.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
criterion = { git = "https://github.com/Anton-4/criterion.rs" }
|
||||
wasm3 = { git = "https://github.com/roc-lang/wasm3-rs", rev = "f0f807d1fc0a50d1d68e5799e54ee62c05af00f5" }
|
||||
lazy_static = "1.4.0"
|
||||
|
|
|
@ -20,4 +20,4 @@ roc_target = { path = "../roc_target" }
|
|||
roc_reporting = { path = "../../reporting" }
|
||||
test_mono_macros = { path = "../test_mono_macros" }
|
||||
bumpalo = { version = "3.8.0", features = ["collections"] }
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
|
|
|
@ -28,7 +28,7 @@ fnv = "1.0.7"
|
|||
[dev-dependencies]
|
||||
pretty_assertions = "1.0.0"
|
||||
tempfile = "3.2.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
cli_utils = { path = "../cli_utils" }
|
||||
roc_test_utils = { path = "../test_utils" }
|
||||
dircpy = "0.3.12"
|
||||
|
|
|
@ -32,7 +32,7 @@ test_gen = { path = "../compiler/test_gen" }
|
|||
libc = "0.2.106"
|
||||
roc_build = { path = "../compiler/build", features = ["target-aarch64", "target-x86_64"] }
|
||||
tempfile = "3.2.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
pretty_assertions = "1.0.0"
|
||||
strip-ansi-escapes = "0.1.1"
|
||||
|
||||
|
|
|
@ -12,7 +12,7 @@ roc_cli = {path = "../cli"}
|
|||
lazy_static = "1.4.0"
|
||||
|
||||
[dev-dependencies]
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
strip-ansi-escapes = "0.1.1"
|
||||
wasmer-wasi = "2.2.1"
|
||||
|
||||
|
|
|
@ -32,5 +32,5 @@ roc_target = { path = "../compiler/roc_target" }
|
|||
roc_test_utils = { path = "../test_utils" }
|
||||
roc_solve = { path = "../compiler/solve" }
|
||||
pretty_assertions = "1.0.0"
|
||||
indoc = "1.0.3"
|
||||
indoc = "1.0.7"
|
||||
insta = "1.18.2"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue