add dep on seq

This commit is contained in:
Simon Cruanes 2022-03-18 21:45:47 -04:00
parent 4aba0654b0
commit f1831f364e
No known key found for this signature in database
GPG key ID: EBFFF6F283F3A2B4
2 changed files with 2 additions and 1 deletions

View file

@ -2,7 +2,7 @@
(library (library
(name tiny_httpd) (name tiny_httpd)
(public_name tiny_httpd) (public_name tiny_httpd)
(libraries threads) (libraries threads seq)
(flags :standard -safe-string -warn-error -a+8) (flags :standard -safe-string -warn-error -a+8)
(wrapped false)) (wrapped false))

View file

@ -13,6 +13,7 @@ depends: [
"dune" { >= "2.0" } "dune" { >= "2.0" }
"base-threads" "base-threads"
"result" "result"
"seq"
"ocaml" { >= "4.04.0" } "ocaml" { >= "4.04.0" }
"odoc" {with-doc} "odoc" {with-doc}
"qtest" { >= "2.9" & with-test} "qtest" { >= "2.9" & with-test}