diff options
| author | Aleksey Kladov <aleksey.kladov@gmail.com> | 2021-01-17 11:41:45 +0300 |
|---|---|---|
| committer | Aleksey Kladov <aleksey.kladov@gmail.com> | 2021-01-17 11:43:04 +0300 |
| commit | 1c8feac01f7ba92c810ddeafde399b4d152dec4e (patch) | |
| tree | ffd5afcb559fd5d6387543d154ddd5cbce9efffe | |
| parent | 93e189604916a64423c5722c2b95722b79fec0cd (diff) | |
| download | rust-1c8feac01f7ba92c810ddeafde399b4d152dec4e.tar.gz rust-1c8feac01f7ba92c810ddeafde399b4d152dec4e.zip | |
:arrow_up: arena
| -rw-r--r-- | Cargo.lock | 2 | ||||
| -rw-r--r-- | crates/hir_def/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/hir_expand/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/hir_ty/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/profile/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/project_model/Cargo.toml | 2 | ||||
| -rw-r--r-- | lib/arena/Cargo.toml | 2 |
7 files changed, 7 insertions, 7 deletions
diff --git a/Cargo.lock b/Cargo.lock index 76d64cb14f2..dd1d599e384 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -769,7 +769,7 @@ dependencies = [ [[package]] name = "la-arena" -version = "0.1.1" +version = "0.2.0" [[package]] name = "lazy_static" diff --git a/crates/hir_def/Cargo.toml b/crates/hir_def/Cargo.toml index 023d288d1ef..5352212948d 100644 --- a/crates/hir_def/Cargo.toml +++ b/crates/hir_def/Cargo.toml @@ -20,7 +20,7 @@ fst = { version = "0.4", default-features = false } itertools = "0.10.0" indexmap = "1.4.0" smallvec = "1.4.0" -la-arena = { version = "0.1.0", path = "../../lib/arena" } +la-arena = { version = "0.2.0", path = "../../lib/arena" } stdx = { path = "../stdx", version = "0.0.0" } base_db = { path = "../base_db", version = "0.0.0" } diff --git a/crates/hir_expand/Cargo.toml b/crates/hir_expand/Cargo.toml index 1b1c7da6564..5271110d241 100644 --- a/crates/hir_expand/Cargo.toml +++ b/crates/hir_expand/Cargo.toml @@ -13,7 +13,7 @@ doctest = false log = "0.4.8" either = "1.5.3" rustc-hash = "1.0.0" -la-arena = { version = "0.1.0", path = "../../lib/arena" } +la-arena = { version = "0.2.0", path = "../../lib/arena" } base_db = { path = "../base_db", version = "0.0.0" } syntax = { path = "../syntax", version = "0.0.0" } diff --git a/crates/hir_ty/Cargo.toml b/crates/hir_ty/Cargo.toml index a6916af90ab..98434b74108 100644 --- a/crates/hir_ty/Cargo.toml +++ b/crates/hir_ty/Cargo.toml @@ -20,7 +20,7 @@ scoped-tls = "1" chalk-solve = { version = "0.47", default-features = false } chalk-ir = "0.47" chalk-recursive = "0.47" -la-arena = { version = "0.1.0", path = "../../lib/arena" } +la-arena = { version = "0.2.0", path = "../../lib/arena" } stdx = { path = "../stdx", version = "0.0.0" } hir_def = { path = "../hir_def", version = "0.0.0" } diff --git a/crates/profile/Cargo.toml b/crates/profile/Cargo.toml index 1b8f610bb9d..9c7ce26beb3 100644 --- a/crates/profile/Cargo.toml +++ b/crates/profile/Cargo.toml @@ -13,7 +13,7 @@ doctest = false once_cell = "1.3.1" cfg-if = "1" libc = "0.2.73" -la-arena = { version = "0.1.0", path = "../../lib/arena" } +la-arena = { version = "0.2.0", path = "../../lib/arena" } [target.'cfg(target_os = "linux")'.dependencies] perf-event = "0.4" diff --git a/crates/project_model/Cargo.toml b/crates/project_model/Cargo.toml index 0747fee96b0..436eff16b40 100644 --- a/crates/project_model/Cargo.toml +++ b/crates/project_model/Cargo.toml @@ -17,7 +17,7 @@ serde = { version = "1.0.106", features = ["derive"] } serde_json = "1.0.48" anyhow = "1.0.26" itertools = "0.10.0" -la-arena = { version = "0.1.0", path = "../../lib/arena" } +la-arena = { version = "0.2.0", path = "../../lib/arena" } cfg = { path = "../cfg", version = "0.0.0" } base_db = { path = "../base_db", version = "0.0.0" } diff --git a/lib/arena/Cargo.toml b/lib/arena/Cargo.toml index b9dbb7ef35d..f4d2ecb6c85 100644 --- a/lib/arena/Cargo.toml +++ b/lib/arena/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "la-arena" -version = "0.1.1" +version = "0.2.0" description = "Simple index-based arena without deletion." license = "MIT OR Apache-2.0" repository = "https://github.com/rust-analyzer/rust-analyzer" |
