mirror of
https://github.com/clockworklabs/SpacetimeDB.git
synced 2026-05-12 10:48:19 -04:00
ed2a18cff7
# Description of Changes There were mentions of `hashbrown` in the repo that did not go through `spacetimedb_data_structures::map`. This caused compile errors on master when running certain tests locally. These have been replaced with the proper imports. The PR also bump hashbrown to 0.16.1 and foldhash to 0.2.0. # API and ABI breaking changes None # Expected complexity level and risk 2 # Testing Covered by existing tests.
20 lines
553 B
TOML
20 lines
553 B
TOML
[package]
|
|
name = "spacetimedb-memory-usage"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license-file = "LICENSE"
|
|
description = "Provides the trait `MemoryUsage`"
|
|
|
|
[features]
|
|
hash_map = ["dep:hashbrown"]
|
|
smallvec = ["dep:smallvec"]
|
|
ethnum = ["dep:ethnum"]
|
|
decorum = ["dep:decorum"]
|
|
default = ["hash_map", "smallvec", "ethnum", "decorum"]
|
|
|
|
[dependencies]
|
|
hashbrown = { workspace = true, optional = true }
|
|
smallvec = { workspace = true, optional = true }
|
|
ethnum = { workspace = true, optional = true }
|
|
decorum = { workspace = true, optional = true }
|