this repo has no description
1opam-version: "2.0" 2synopsis: 3 "A minimalistic, composable web framework for building HTTP/WebSocket servers" 4description: 5 "Trail is a minimalistic, composable framework for building HTTP/WebSocket servers for Riot, inspired by Elixir's Plug & WebSock. It provides you with a small set of abstractions for building _trails_ that can be assembled to handle a request. This includes a logger, a router, a socket endpoint, an interface to handling web socket frames, and more" 6maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"] 7authors: ["Leandro Ostera <leandro@abstractmachines.dev>"] 8license: "MIT" 9tags: [ 10 "composable" "web framework" "http" "websockets" "ws" "riot" "multicore" 11] 12homepage: "https://github.com/suri-framework/trail" 13bug-reports: "https://github.com/suri-framework/trail/issues" 14depends: [ 15 "alcotest" {with-test & >= "1.7.0"} 16 "atacama" {>= "0.0.5"} 17 "bytestring" {>= "0.0.1"} 18 "http" {>= "6.0.0~beta2"} 19 "magic-mime" {>= "1.3.1"} 20 "mdx" {with-test & >= "2.3.1"} 21 "ocaml" {>= "5.1.0"} 22 "ppx_bitstring" {>= "4.1.0"} 23 "qcheck" {with-test & >= "0.21.3"} 24 "riot" {>= "0.0.9"} 25 "uuidm" {>= "0.9.8"} 26 "dune" {>= "3.11"} 27 "odoc" {with-doc} 28] 29build: [ 30 ["dune" "subst"] {dev} 31 [ 32 "dune" 33 "build" 34 "-p" 35 name 36 "-j" 37 jobs 38 "@install" 39 "@runtest" {with-test} 40 "@doc" {with-doc} 41 ] 42] 43dev-repo: "git+https://github.com/suri-framework/trail.git" 44url { 45 src: 46 "https://github.com/suri-framework/trail/releases/download/0.0.1/trail-0.0.1.tbz" 47 checksum: [ 48 "sha256=0a034596e0a8527cf775efc1c4bb08bdccb39971164a11bddcf6ee358e593c5e" 49 "sha512=012591f9c9b88ab774a577d6b534019f8270888999834d71aeddf33f92fbd09c4f56449aeafc3ccc7850558a555177f626e46b66355251249824ffcbd4f2294b" 50 ] 51} 52x-commit-hash: "fff3b39c1bab450075bbbac3d8d0cfe4993c3ea4"