This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
25
unikernel/duniverse/lru/lru.opam
Normal file
25
unikernel/duniverse/lru/lru.opam
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
version: "0.3.1"
|
||||
opam-version: "2.0"
|
||||
maintainer: "David Kaloper Meršinjak <dk505@cam.ac.uk>"
|
||||
authors: ["David Kaloper Meršinjak <dk505@cam.ac.uk>"]
|
||||
homepage: "https://github.com/pqwy/lru"
|
||||
doc: "https://pqwy.github.io/lru/doc"
|
||||
license: "ISC"
|
||||
dev-repo: "git+https://github.com/pqwy/lru.git"
|
||||
bug-reports: "https://github.com/pqwy/lru/issues"
|
||||
synopsis: "Scalable LRU caches"
|
||||
build: [ [ "dune" "subst" ] {pinned}
|
||||
[ "dune" "build" "-p" name "-j" jobs ]
|
||||
[ "dune" "runtest" "-p" name ] {with-test & ocaml:version >= "4.07.0"} ]
|
||||
depends: [
|
||||
"ocaml" {>="4.03.0"}
|
||||
"dune" {build & >= "1.7"}
|
||||
"psq" {>="0.2.0"}
|
||||
"qcheck-core" {with-test}
|
||||
"qcheck-alcotest" {with-test}
|
||||
"alcotest" {with-test}
|
||||
]
|
||||
description: """
|
||||
Lru provides weight-bounded finite maps that can remove the least-recently-used
|
||||
(LRU) bindings in order to maintain a weight constraint.
|
||||
"""
|
||||
Loading…
Add table
Add a link
Reference in a new issue