this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #25155 from public-release/rename_lru_cache

Rename `lru_cache` to `janestreet_lru_cache`

authored by

Marcello Seri and committed by
GitHub
b7ebd0f8 e3355ee9

+73
+4
packages/incremental/incremental.v0.16.0/opam
··· 29 29 src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/incremental-v0.16.0.tar.gz" 30 30 checksum: "sha256=3464f34f1048ee53e0727c83acfaa8c303f0133e3cf78ef745773fa63aa0872a" 31 31 } 32 + flags: deprecated 33 + post-messages: [ 34 + "Due to a name clash lru_cache has been renamed janestreet_lru_cache: lru_cache.v0.16.0 and its dependant incremental.v0.16.0 will be marked as unavailable on May 1, please update your dependencies before that date." 35 + ]
+36
packages/incremental/incremental.v0.16.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Jane Street developers" 3 + authors: ["Jane Street Group, LLC"] 4 + homepage: "https://github.com/janestreet/incremental" 5 + bug-reports: "https://github.com/janestreet/incremental/issues" 6 + dev-repo: "git+https://github.com/janestreet/incremental.git" 7 + doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/incremental/index.html" 8 + license: "MIT" 9 + build: [ 10 + ["dune" "build" "-p" name "-j" jobs] 11 + ] 12 + depends: [ 13 + "ocaml" {>= "4.14.0"} 14 + "core" {>= "v0.16" & < "v0.17"} 15 + "core_kernel" {>= "v0.16" & < "v0.17"} 16 + "janestreet_lru_cache" {>= "v0.16.1" & < "v0.17"} 17 + "ppx_jane" {>= "v0.16" & < "v0.17"} 18 + "ppx_optcomp" {>= "v0.16" & < "v0.17"} 19 + "dune" {>= "2.0.0"} 20 + ] 21 + synopsis: "Library for incremental computations" 22 + description: " 23 + Part of Jane Street's Core library 24 + The Core suite of libraries is an industrial strength alternative to 25 + OCaml's standard library that was developed by Jane Street, the 26 + largest industrial user of OCaml. 27 + " 28 + url { 29 + src: 30 + "https://github.com/janestreet/incremental/archive/refs/tags/v0.16.1.tar.gz" 31 + checksum: [ 32 + "md5=c1c01831c72847296ce2569d2cc4372f" 33 + "sha512=0116a82509c9037529092c5a31bdc8f0c64ed3d4c7a58a67f5250685196c9830e352100c83185bba8b2db949ffc9e3f39a0bbfe14c07e0da63e0302ca24aaa7a" 34 + ] 35 + } 36 +
+29
packages/janestreet_lru_cache/janestreet_lru_cache.v0.16.1/opam
··· 1 + opam-version: "2.0" 2 + maintainer: "Jane Street developers" 3 + authors: ["Jane Street Group, LLC"] 4 + homepage: "https://github.com/janestreet/janestreet_lru_cache" 5 + bug-reports: "https://github.com/janestreet/janestreet_lru_cache/issues" 6 + dev-repo: "git+https://github.com/janestreet/janestreet_lru_cache.git" 7 + doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/janestreet_lru_cache/index.html" 8 + license: "MIT" 9 + build: [ 10 + ["dune" "build" "-p" name "-j" jobs] 11 + ] 12 + depends: [ 13 + "ocaml" {>= "4.14.0"} 14 + "core" {>= "v0.16" & < "v0.17"} 15 + "ppx_jane" {>= "v0.16" & < "v0.17"} 16 + "dune" {>= "2.0.0"} 17 + ] 18 + synopsis: "An LRU Cache implementation." 19 + description: " 20 + Implementation of a Least Recently Used Cache. 21 + " 22 + url { 23 + src: 24 + "https://github.com/janestreet/janestreet_lru_cache/archive/refs/tags/v0.16.1.tar.gz" 25 + checksum: [ 26 + "md5=e79b2e68172b1d57ed6cf1ef3e307a66" 27 + "sha512=c709c400b62d282d6051f3504cf37aaf3922f725853f43b2b72ec0fb2ab517e23020ff23b41c4b1a9724a74164c8f98825194389d30796af63c128a8012e4ec2" 28 + ] 29 + }
+4
packages/lru_cache/lru_cache.v0.16.0/opam
··· 23 23 src: "https://ocaml.janestreet.com/ocaml-core/v0.16/files/lru_cache-v0.16.0.tar.gz" 24 24 checksum: "sha256=aa6b87aa9316ee41ca6e8b1291b6955305b26ba3330aa4e7fdcc0f921e3fc976" 25 25 } 26 + flags: deprecated 27 + post-messages: [ 28 + "Due to a name clash lru_cache has been renamed janestreet_lru_cache: lru_cache.v0.16.0 and its dependant incremental.v0.16.0 will be marked as unavailable on May 1, please update your dependencies before that date." 29 + ]