Initial import

This commit is contained in:
2026-03-07 21:53:31 +01:00
parent e6db2c661c
commit b9eff3bd57
5 changed files with 398 additions and 0 deletions

20
info.rkt Normal file
View File

@@ -0,0 +1,20 @@
#lang info
(define pkg-authors '(hnmdijkema))
(define version "0.1.1")
(define license 'Apache-2.0)
(define pkg-desc "An expiring Least Recently Used (LRU) Cache implementation for racket. O(n) behaviour, not optimized for O(1).")
(define scribblings
'(
("scribblings/lru-cache.scrbl" () (library) "lru-cache")
)
)
(define deps
'("base"))
(define build-deps
'("racket-doc"
"rackunit-lib"
"scribble-lib"))