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)
|
(name pusk)
|
||||||
(synopsis "Twitter bot")
|
(synopsis "Twitter bot")
|
||||||
(description "Send tweet peridically to avoid ban from Elon")
|
(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
|
(tags
|
||||||
(api twitter)))
|
(api twitter)))
|
||||||
|
|
||||||
|
|
|
@ -9,6 +9,9 @@ tags: ["api" "twitter"]
|
||||||
depends: [
|
depends: [
|
||||||
"ocaml"
|
"ocaml"
|
||||||
"dune" {>= "3.7"}
|
"dune" {>= "3.7"}
|
||||||
|
"cohttp-lwt-unix" {>= "5.1"}
|
||||||
|
"dotenv" {>= "0.0"}
|
||||||
|
"twostep" {>= "1.0"}
|
||||||
"odoc" {with-doc}
|
"odoc" {with-doc}
|
||||||
]
|
]
|
||||||
build: [
|
build: [
|
||||||
|
|
Loading…
Reference in a new issue