Skip to content

Commit

Permalink
[illicit][topo] Release code size improvements.
Browse files Browse the repository at this point in the history
(oops)
  • Loading branch information
anp committed Feb 2, 2021
1 parent 9ecadba commit 20920ca
Show file tree
Hide file tree
Showing 8 changed files with 28 additions and 10 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ wasm-bindgen = [ "dyn-cache/wasm-bindgen", "parking_lot/wasm-bindgen", "topo/was
[dependencies]
dyn-cache = { path = "dyn-cache", version = "0.12.1"}
futures = "0.3.5"
illicit = { path = "illicit", version = "1.1.1"}
illicit = { path = "illicit", version = "1.1.2"}
moxie-macros = { path = "macros", version = "0.1.0-pre" }
parking_lot = "0.11"
scopeguard = "1"
topo = { path = "topo", version = "0.13.1"}
topo = { path = "topo", version = "0.13.2"}
tracing = "^0.1"

[dev-dependencies]
Expand Down
4 changes: 2 additions & 2 deletions dom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ webdom = [
[dependencies]
augdom = { path = "augdom", version = "0.2.0-pre", default-features = false }
futures = "0.3.5"
illicit = { path = "../illicit", version = "1.1.1"}
illicit = { path = "../illicit", version = "1.1.2"}
moxie = { path = "../", version = "0.7.1-pre"}
paste = "1.0.0"
scopeguard = "1"
topo = { path = "../topo", version = "0.13.1"}
topo = { path = "../topo", version = "0.13.2"}

# web-only
raf = { path = "raf", version = "0.2.0-pre", optional = true }
Expand Down
2 changes: 1 addition & 1 deletion dom/augdom/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ webdom = ["gloo-timers", "js-sys", "prettiest", "wasm-bindgen", "web-sys"]
[dependencies]
futures = "0.3.5"
gloo-timers = { version = "0.2.1", features = ["futures"], optional = true }
illicit = { version = "1", path = "../../illicit", optional = true }
illicit = { version = "1.1.2", path = "../../illicit", optional = true }
paste = "1"
quick-xml = "0.20.0"
static_assertions = "1"
Expand Down
2 changes: 1 addition & 1 deletion dyn-cache/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ wasm-bindgen = [ "parking_lot/wasm-bindgen" ]
downcast-rs = "1.1.1"
hash_hasher = "2.0.3"
hashbrown = "0.9.0"
illicit = { path = "../illicit", version = "1.1.1"}
illicit = { path = "../illicit", version = "1.1.2"}
parking_lot = "0.11.0"
paste = "1.0.0"

Expand Down
14 changes: 13 additions & 1 deletion illicit/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,18 @@ The [illicit](https://docs.rs/illicit) crate provides type-indexed thread-local

<!-- categories: Added, Removed, Changed, Deprecated, Fixed, Security -->

## [1.1.2] - 2021-02-01

### Changed

- Internal refactors to reduce code size.

## [1.1.1] - 2020-08-20

### Added

- Guard returned from `get()` impls `Debug`.

## [1.1.0] - 2020-07-12

### Added
Expand All @@ -19,7 +31,7 @@ Commiting to the current API for future `1.*` releases.
### Added

- `impl From<Snapshot> for Layer` allows reusing collected snapshots.

### Removed

- `#![feature(track_caller)]` (requires >= nightly-2020-07-02 until 1.46 is beta/stable)
Expand Down
2 changes: 1 addition & 1 deletion illicit/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "illicit"
version = "1.1.1"
version = "1.1.2"
description = "An implicit thread-local environment which is indexed by type."
categories = ["rust-patterns"]
keywords = ["context", "environment", "global", "singleton"]
Expand Down
6 changes: 6 additions & 0 deletions topo/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ to implement a form of [incremental computing](https://en.wikipedia.org/wiki/Inc

<!-- categories: Added, Removed, Changed, Deprecated, Fixed, Security -->

## [0.13.2] - 2021-02-01

### Changed

- Internal refactors to reduce code size.

## [0.13.1] - 2020-12-28

### Added
Expand Down
4 changes: 2 additions & 2 deletions topo/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "topo"
version = "0.13.1"
version = "0.13.2"
description = "Tools for incrementally computing repeated callgraphs."
categories = ["caching", "data-structures", "gui", "memory-management", "rust-patterns"]
keywords = ["cache", "memoize", "intern", "topology", "incremental"]
Expand All @@ -19,7 +19,7 @@ wasm-bindgen = [ "dyn-cache/wasm-bindgen", "parking_lot/wasm-bindgen" ]

[dependencies]
dyn-cache = { path = "../dyn-cache", version = "0.12.1"}
illicit = { path = "../illicit", version = "1.1.1"}
illicit = { path = "../illicit", version = "1.1.2"}
once_cell = "1.4.0"
parking_lot = "0.11.0"
topo-macro = { path = "macro", version = "0.10.0"}
Expand Down

0 comments on commit 20920ca

Please sign in to comment.