-
Notifications
You must be signed in to change notification settings - Fork 247
Replace ElasticArray with SmallVec #282
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b27f602
1c361a8
9d2d423
cb7713c
83c139a
28f46f2
6e2745d
539e7e4
95251b4
a619a8f
4d08620
a4361a0
6b83702
a62b3c7
6c17b1b
a215f59
168adf0
420cfaf
60347a8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -20,12 +20,12 @@ wee_alloc = { version = "0.4.5", optional = true } | |
| mimallocator = { version = "0.1.3", features = ["secure"], optional = true } | ||
| mimalloc-sys = { version = "0.1.6", optional = true } | ||
|
|
||
| elastic-array = { version = "0.10.2", optional = true } | ||
| smallvec = { version = "1.0.0", optional = true } | ||
| ethereum-types = { version = "0.8.0", optional = true, path = "../ethereum-types" } | ||
| parking_lot = { version = "0.9.0", optional = true } | ||
|
|
||
| [target.'cfg(target_os = "windows")'.dependencies] | ||
| winapi = "0.3.8" | ||
| winapi = { version = "0.3.8", features = ["heapapi"] } | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. so it didn't work before on windows?
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I honestly don't know how it could have worked; looks like the |
||
|
|
||
| [target.'cfg(not(target_os = "windows"))'.dependencies.jemallocator] | ||
| version = "0.3.2" | ||
|
|
@@ -43,6 +43,6 @@ jemalloc-global = ["jemallocator"] | |
| # use mimalloc as global allocator | ||
| mimalloc-global = ["mimallocator", "mimalloc-sys"] | ||
| # implement additional types | ||
| ethereum-impls = ["ethereum-types", "elastic-array", "parking_lot"] | ||
| ethereum-impls = ["ethereum-types", "parking_lot", "smallvec"] | ||
| # Full estimate: no call to allocator | ||
| estimate-heapsize = [] | ||
Uh oh!
There was an error while loading. Please reload this page.