Files
Mazdak Farrokhzad ed2a18cff7 Bump hashbrown, foldhash; Fix some compile errors in master (#3722)
# 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.
2025-11-25 12:17:24 +00:00

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 }