7278: bump arena r=matklad a=matklad

bors r+
🤖

Co-authored-by: Aleksey Kladov <aleksey.kladov@gmail.com>
This commit is contained in:
bors[bot] 2021-01-15 08:36:26 +00:00 committed by GitHub
commit dc48de28d8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 10 additions and 10 deletions

16
Cargo.lock generated
View file

@ -552,7 +552,7 @@ dependencies = [
"hir_expand", "hir_expand",
"indexmap", "indexmap",
"itertools 0.10.0", "itertools 0.10.0",
"la-arena 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"log", "log",
"mbe", "mbe",
"once_cell", "once_cell",
@ -571,7 +571,7 @@ version = "0.0.0"
dependencies = [ dependencies = [
"base_db", "base_db",
"either", "either",
"la-arena 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"log", "log",
"mbe", "mbe",
"parser", "parser",
@ -596,7 +596,7 @@ dependencies = [
"hir_def", "hir_def",
"hir_expand", "hir_expand",
"itertools 0.10.0", "itertools 0.10.0",
"la-arena 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"log", "log",
"once_cell", "once_cell",
"profile", "profile",
@ -769,13 +769,13 @@ dependencies = [
[[package]] [[package]]
name = "la-arena" name = "la-arena"
version = "0.1.0" version = "0.1.1"
[[package]] [[package]]
name = "la-arena" name = "la-arena"
version = "0.1.0" version = "0.1.1"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0385ab3b926cc05c78275d7ac6799c21fb964ada0a45cdaeaf1415d6a3dda39" checksum = "383ed2a74426d1051751f6483a7160b98f36068224857cd4c953b34719476fc3"
[[package]] [[package]]
name = "lazy_static" name = "lazy_static"
@ -1203,7 +1203,7 @@ name = "profile"
version = "0.0.0" version = "0.0.0"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 1.0.0",
"la-arena 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"libc", "libc",
"once_cell", "once_cell",
"perf-event", "perf-event",
@ -1218,7 +1218,7 @@ dependencies = [
"cargo_metadata", "cargo_metadata",
"cfg", "cfg",
"itertools 0.10.0", "itertools 0.10.0",
"la-arena 0.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "la-arena 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)",
"log", "log",
"paths", "paths",
"proc_macro_api", "proc_macro_api",

View file

@ -1,7 +1,7 @@
[package] [package]
name = "la-arena" name = "la-arena"
version = "0.1.0" version = "0.1.1"
description = "Thy rope of sands..." description = "Simple index-based arena without deletion."
license = "MIT OR Apache-2.0" license = "MIT OR Apache-2.0"
repository = "https://github.com/rust-analyzer/rust-analyzer" repository = "https://github.com/rust-analyzer/rust-analyzer"
documentation = "https://docs.rs/la-arena" documentation = "https://docs.rs/la-arena"