app

Local-first trade for farms and co-ops
git clone https://radroots.dev/git/app.git
Log | Files | Refs | README | LICENSE

commit e35b535e536cf6670d2853542f72a0e4dfa1e628
parent 537865a4131d8af7645c9e1d39ffc4286f674473
Author: triesap <tyson@radroots.org>
Date:   Thu,  5 Feb 2026 15:31:03 +0000

core: remove unused datastore import

- drop unused wasm32-only entry import
- reduce unused import warnings
- keep datastore behavior unchanged
- avoid extra conditional code

Diffstat:
Mcrates/core/src/datastore/web.rs | 3---
1 file changed, 0 insertions(+), 3 deletions(-)

diff --git a/crates/core/src/datastore/web.rs b/crates/core/src/datastore/web.rs @@ -20,9 +20,6 @@ use super::{ RadrootsClientDatastoreResult, }; -#[cfg(target_arch = "wasm32")] -use super::RadrootsClientDatastoreEntry; - const DATASTORE_STORE_PREFIX: &str = "datastore"; const DEFAULT_IV_LENGTH: u32 = 12;