-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #31 from frengor/dev
- Update to 0.5.0 - Implement tracing doing a breadth-first traversal of the heap, making the collector not overflow the stack when analyzing very deep and nested structures - Improve performance when weak pointers are enabled. - *(nightly only)* Derive `SmartPointer` for `Cc` - Minor improvements and fixes - Update iai-callgrind to 1.12.2
- Loading branch information
Showing
20 changed files
with
1,535 additions
and
1,062 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,7 +14,7 @@ edition.workspace = true | |
members = ["derive"] | ||
|
||
[workspace.package] | ||
version = "0.4.0" # Also update in [dependencies.rust-cc-derive.version] | ||
version = "0.5.0" # Also update in [dependencies.rust-cc-derive.version] | ||
authors = ["fren_gor <[email protected]>"] | ||
repository = "https://github.com/frengor/rust-cc" | ||
categories = ["memory-management", "no-std"] | ||
|
@@ -49,12 +49,12 @@ std = ["slotmap?/std", "thiserror/std"] | |
pedantic-debug-assertions = [] | ||
|
||
[dependencies] | ||
rust-cc-derive = { path = "./derive", version = "=0.4.0", optional = true } | ||
rust-cc-derive = { path = "./derive", version = "=0.5.0", optional = true } | ||
slotmap = { version = "1.0", optional = true } | ||
thiserror = { version = "1.0", package = "thiserror-core", default-features = false } | ||
|
||
[dev-dependencies] | ||
iai-callgrind = "=0.7.3" # Also update IAI_CALLGRIND_VERSION in .github/workflows/bench.yml | ||
iai-callgrind = "=0.12.2" | ||
rand = "0.8.3" | ||
trybuild = "1.0.85" | ||
test-case = "3.3.1" | ||
|
@@ -64,6 +64,10 @@ name = "bench" | |
harness = false | ||
required-features = ["std", "derive"] | ||
|
||
[profile.bench] | ||
debug = true # Required by iai-callgrind | ||
strip = false # Required by iai-callgrind | ||
|
||
[lints.rust] | ||
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_auto_cfg)'] } | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.