add deps inside dune
This commit is contained in:
parent
aac13f01e8
commit
fe4c642ff9
2 changed files with 12 additions and 1 deletions
10
dune-project
10
dune-project
|
@ -17,7 +17,15 @@
|
|||
(name pusk)
|
||||
(synopsis "Twitter bot")
|
||||
(description "Send tweet peridically to avoid ban from Elon")
|
||||
(depends ocaml dune)
|
||||
(depends
|
||||
ocaml
|
||||
dune
|
||||
(cohttp-lwt-unix
|
||||
(>= 5.1))
|
||||
(dotenv
|
||||
(>= 0.0))
|
||||
(twostep
|
||||
(>= 1.0)))
|
||||
(tags
|
||||
(api twitter)))
|
||||
|
||||
|
|
|
@ -9,6 +9,9 @@ tags: ["api" "twitter"]
|
|||
depends: [
|
||||
"ocaml"
|
||||
"dune" {>= "3.7"}
|
||||
"cohttp-lwt-unix" {>= "5.1"}
|
||||
"dotenv" {>= "0.0"}
|
||||
"twostep" {>= "1.0"}
|
||||
"odoc" {with-doc}
|
||||
]
|
||||
build: [
|
||||
|
|
Loading…
Reference in a new issue