Skip to content

Commit 19aad34

Browse files
committed
Use dune implicit_transitive_deps false
1 parent 7335e64 commit 19aad34

File tree

7 files changed

+15
-9
lines changed

7 files changed

+15
-9
lines changed

dune-project

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
1-
(lang dune 1.5)
2-
3-
(name lambda-runtime)
1+
(lang dune 1.7)
42

53
(using fmt 1.1)
4+
5+
(implicit_transitive_deps false)
6+
7+
(name lambda-runtime)

examples/asynchronous-handler/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(executable
22
(name basic)
3-
(libraries lambda-runtime logs.lwt logs.fmt fmt.tty lwt.unix))
3+
(libraries lambda-runtime logs.lwt logs.fmt fmt.tty lwt lwt.unix result))
44

55
(env
66
(static

examples/now-custom-runtime/dune

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
(executable
22
(name basic)
3-
(libraries lambda-runtime logs.fmt fmt.tty))
3+
(libraries lambda-runtime logs.fmt fmt.tty yojson))
44

55
(env
66
(static

examples/now-lambda-reason/dune

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(executable
22
(name basic)
3-
(libraries now logs.fmt fmt.tty httpaf))
3+
(libraries now logs.fmt fmt.tty httpaf httpaf-lwt-unix lwt lwt.unix uri
4+
bigstringaf bigarray-compat yojson))
45

56
(env
67
(static

lib/dune

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@
33
(public_name lambda-runtime)
44
(preprocess
55
(pps ppx_deriving_yojson))
6-
(libraries yojson ppx_deriving_yojson.runtime httpaf-lwt-unix uri logs.lwt))
6+
(libraries yojson ppx_deriving_yojson.runtime bigstringaf bigarray-compat
7+
httpaf httpaf-lwt-unix uri logs.lwt lwt lwt.unix result))

now/dune

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(library
22
(name now)
33
(public_name now)
4-
(libraries lambda-runtime yojson ppx_deriving_yojson.runtime base64 httpaf)
4+
(libraries bigstringaf lwt lambda-runtime yojson ppx_deriving_yojson.runtime
5+
result base64 httpaf)
56
(preprocess
67
(pps ppx_deriving_yojson)))

test/dune

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
(executable
22
(name test)
3-
(libraries alcotest lambda-runtime now base64))
3+
(libraries alcotest lambda-runtime now base64 yojson fmt lwt lwt.unix httpaf
4+
result ppx_deriving_yojson.runtime))
45

56
(alias
67
(name runtest)

0 commit comments

Comments
 (0)