this repo has no description
1opam-version: "2.0" 2synopsis: "A simple immutable database for the masses" 3description: """ 4SandDB is a simple immutable database, which is also: 5- Simple: It only does one thing, which is persisting data in a file. 6- Easy to use: SandDB's API is extremely small, so you only need to know few functions to use it. 7- Type safe: Every common dangerous operation (like parsing) is covered by the Result type, so you will know where to expect errors. 8- Immutable: Database is based on the immutable stack idea, where you can only push onto the stack. 9- Crud capable: Even though the database is immutable you still can update and delete records, by shadowing them. 10- Version keeping: Every update and delete operation will produce a new version of the affected record, without modifying the original, so you will have all versions of your data. 11- Concurrent: SandDB is based on lwt, so every database operation is asynchronous. 12- Supports multiple serializers: SandDB supports both json and biniou serialization format thanks to the atdgen library. 13""" 14maintainer: "Robert Toth <kkdstryker@gmail.com>" 15authors: ["Robert Toth"] 16homepage: "https://github.com/StrykerKKD/SandDB" 17bug-reports: "https://github.com/StrykerKKD/SandDB/issues" 18dev-repo: "git+https://github.com/StrykerKKD/SandDB.git" 19license: "MIT" 20build: [ 21 ["dune" "subst"] {dev} 22 ["dune" "build" "-p" name "-j" jobs] 23 ["dune" "build" "@doc" "-p" name] {with-doc} 24] 25run-test: [ 26 ["dune" "runtest" "-p" name "-j" jobs] 27] 28depends: [ 29 "dune" {>= "3.0"} 30 "atdgen" {>= "1.12.0" & < "2.16.0"} 31 "lwt" {>= "3.3.0"} 32 "uuidm" {>= "0.9.6"} 33 "base" {>= "v0.11.0" & < "v0.17"} 34 "alcotest" {with-test} 35 "odoc" {with-doc} 36 "ocaml" {>= "4.04.2"} 37] 38url { 39 src: "https://github.com/StrykerKKD/SandDB/archive/0.2.tar.gz" 40 checksum: [ 41 "sha256=578619fae102de4592edc5a5ab0bf270347f792fa667458714e25ec7cee0c903" 42 "md5=576971abffbcee20fb27bb49fb8dc3db" 43 ] 44}