Skip to content

Commit 268ac87

Browse files
committed
Add license note to README
1 parent 9771604 commit 268ac87

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ocaml-uring -- bindings to Linux io_uring
22

3-
These are OCaml bindings for the Linux [io_uring][] stack
3+
These are OCaml bindings for the Linux [io_uring][liburing] stack
44
(an alternative to using syscalls such as `select` or `epoll`).
55

66
The [Eio][] library provides a higher-level effects-based API
@@ -16,5 +16,11 @@ To use the library directly:
1616

1717
The `tests` directory contains some examples.
1818

19-
[io_uring]: https://github.com/axboe/liburing
19+
## License
20+
21+
This library is released under the ISC license (see [LICENSE.md](./LICENSE.md)),
22+
but note that the repository also vendors [liburing][] -
23+
see [vendor/liburing/README](./vendor/liburing/README).
24+
25+
[liburing]: https://github.com/axboe/liburing
2026
[Eio]: https://github.com/ocaml-multicore/eio

dune-project

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
(generate_opam_files true)
44
(formatting disabled)
55
(source (github ocaml-multicore/ocaml-uring))
6-
(license ISC)
6+
(license "(ISC AND MIT)")
77
(authors "Anil Madhavapeddy" "Sadiq Jaffer" "Thomas Leonard")
88
(maintainers "[email protected]")
99
(package

uring.opam

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ description:
55
"Bindings to the Linux io_uring kernel IO interfaces. See https://github.com/ocaml-multicore/eio for a higher-level API using this."
66
maintainer: ["[email protected]"]
77
authors: ["Anil Madhavapeddy" "Sadiq Jaffer" "Thomas Leonard"]
8-
license: "ISC"
8+
license: "(ISC AND MIT)"
99
homepage: "https://github.com/ocaml-multicore/ocaml-uring"
1010
bug-reports: "https://github.com/ocaml-multicore/ocaml-uring/issues"
1111
depends: [

0 commit comments

Comments
 (0)