mirror of
https://github.com/status-im/nim-eth.git
synced 2025-01-12 07:14:24 +00:00
84664b0fc0
As it happens, the two share the exact same interface (even the test suite removed in this PR passes) - `minilru` has an edge on efficiency however, avoiding the doubly linked list node allocations etc
15 lines
525 B
Nim
15 lines
525 B
Nim
# nim-eth
|
|
# Copyright (c) 2020-2024 Status Research & Development GmbH
|
|
# Licensed and distributed under either of
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
#
|
|
|
|
{.deprecated: "Use minilru directly".}
|
|
|
|
{.push raises: [].}
|
|
|
|
import minilru
|
|
export minilru
|