this repo has no description
1opam-version: "2.0" 2synopsis: "OCaml web framework" 3description: 4 "Opium is a web framework for OCaml that provides everything you need to build safe, fast and extensible web applications." 5maintainer: ["Rudi Grinberg <me@rgrinberg.com>"] 6authors: ["Rudi Grinberg" "Anurag Soni" "Thibaut Mattio"] 7license: "MIT" 8homepage: "https://github.com/rgrinberg/opium" 9doc: "https://rgrinberg.github.io/opium/" 10bug-reports: "https://github.com/rgrinberg/opium/issues" 11depends: [ 12 "dune" {>= "2.0"} 13 "ocaml" {>= "4.08"} 14 "rock" {= version} 15 "lwt" {>= "5.3.0"} 16 "httpaf-lwt-unix" 17 "conf-libev" 18 "logs" 19 "fmt" 20 "mtime" {>= "1.0.0"} 21 "cmdliner" {< "2.0.0"} 22 "ptime" 23 "magic-mime" 24 "yojson" {>= "1.6.0"} 25 "tyxml" {>= "4.3.0"} 26 "mirage-crypto" {< "1.0.0"} 27 "base64" {>= "3.1.0"} 28 "astring" 29 "re" 30 "uri" {>= "2.2.0"} 31 "multipart-form-data" {>= "0.3.0"} 32 "odoc" {with-doc} 33 "alcotest" {with-test} 34 "alcotest-lwt" {with-test} 35] 36conflicts: [ 37 "result" {< "1.5"} # used implicitly through lwt but uses Result.to_option 38] 39build: [ 40 ["dune" "subst"] {dev} 41 [ 42 "dune" 43 "build" 44 "-p" 45 name 46 "-j" 47 jobs 48 "@install" 49 "@runtest" {with-test} 50 "@doc" {with-doc} 51 ] 52] 53dev-repo: "git+https://github.com/rgrinberg/opium.git" 54x-commit-hash: "5e3d601a3ef7b9fdbcc7ea93fd698b6adc2a45c5" 55url { 56 src: 57 "https://github.com/rgrinberg/opium/releases/download/0.20.0/opium-0.20.0.tbz" 58 checksum: [ 59 "sha256=326b91866de90baf535f8b7d4b2ff23e39d952e573c04b3c13f1054b59ff2fb6" 60 "sha512=59b83e7c8fe5f7ae328fb7f2343fe5b8fb735e8f6ee263cfd6c75bb179688ef7cf2b4586b35a2231ed3f3c1ada543021b7a4759326ae095eb77a5f38b9fa3a8a" 61 ] 62}