this repo has no description
1opam-version: "2.0" 2maintainer: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 3authors: "Spiros Eliopoulos <spiros@inhabitedtype.com>" 4homepage: "https://github.com/inhabitedtype/faraday" 5bug-reports: "https://github.com/inhabitedtype/faraday/issues" 6license: "BSD-3-Clause" 7dev-repo: "git+https://github.com/inhabitedtype/faraday.git" 8build: [ 9 [ 10 "ocaml" 11 "setup.ml" 12 "-configure" 13 "--prefix" 14 prefix 15 "--%{base-unix:enable}%-unix" 16 "--%{lwt:enable}%-lwt" 17 "--%{async:enable}%-async" 18 ] 19 ["ocaml" "setup.ml" "-build"] 20 ["ocaml" "setup.ml" "-configure" "--enable-tests"] {with-test} 21 ["ocaml" "setup.ml" "-build"] {with-test} 22 ["ocaml" "setup.ml" "-test"] {with-test} 23] 24install: ["ocaml" "setup.ml" "-install"] 25remove: ["ocamlfind" "remove" "faraday"] 26depends: [ 27 "ocaml" {>= "4.02.0" & < "5.0"} 28 "alcotest" {with-test & >= "0.4.1" & < "0.8.0"} 29 "ocamlfind" {build} 30 "ocamlbuild" {build} 31 "ocplib-endian" {>= "0.8"} 32] 33depopts: ["async" "base-unix" "lwt"] 34conflicts: ["async" {>= "v0.10.0"}] 35synopsis: "A library for writing fast and memory-efficient serializers." 36description: """ 37Faraday is a library for writing fast and memory-efficient serializers. Its 38core type and related operation gives the user fine-grained control over 39copying and allocation behavior while serializing user-defined types, and 40presents the output in a form that makes it possible to use vectorized write 41operations, such as the writev system call, or any other platform or 42application-specific output APIs.""" 43flags: light-uninstall 44url { 45 src: "https://github.com/inhabitedtype/faraday/archive/0.2.0.tar.gz" 46 checksum: [ 47 "sha256=60d8f5e0f93d1bf5c3ed64ae8ee8bbad172c47590607a01b7ae51eca5959c729" 48 "md5=f5493327d8a491ba3b9a6fbed9d1b561" 49 ] 50}