Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove the unnecessary dependency on bytes #285

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

## NEXT RELEASE

- ...
- Drop the dependency on `base-bytes` as it is provided in all supported
versions of the OCaml compiler

## 0.21.2

Expand Down
1 change: 0 additions & 1 deletion qcheck-alcotest.opam
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ build: [
]
depends: [
"dune" { >= "2.8.0" }
"base-bytes"
"base-unix"
"qcheck-core" { = version }
"alcotest" {>= "0.8.1"}
Expand Down
1 change: 0 additions & 1 deletion qcheck-core.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ build: [
]
depends: [
"dune" { >= "2.8.0" }
"base-bytes"
"base-unix"
"alcotest" {with-test}
"odoc" {with-doc}
Expand Down
1 change: 0 additions & 1 deletion qcheck-ounit.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ build: [
]
depends: [
"dune" { >= "2.8.0" }
"base-bytes"
"base-unix"
"qcheck-core" { = version }
"ounit2"
Expand Down
1 change: 0 additions & 1 deletion qcheck.opam
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ build: [
]
depends: [
"dune" { >= "2.8.0" }
"base-bytes"
"base-unix"
"qcheck-core" { = version }
"qcheck-ounit" { = version }
Expand Down
2 changes: 1 addition & 1 deletion src/alcotest/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
(name qcheck_alcotest)
(public_name qcheck-alcotest)
(wrapped false)
(libraries unix bytes qcheck-core qcheck-core.runner alcotest)
(libraries unix qcheck-core qcheck-core.runner alcotest)
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -safe-string)
)
2 changes: 1 addition & 1 deletion src/core/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
(name qcheck_core)
(public_name qcheck-core)
(wrapped false)
(libraries unix bytes)
(libraries unix)
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -safe-string)
)
2 changes: 1 addition & 1 deletion src/ounit/dune
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
(name qcheck_ounit)
(public_name qcheck-ounit)
(wrapped false)
(libraries unix bytes qcheck-core qcheck-core.runner ounit2)
(libraries unix qcheck-core qcheck-core.runner ounit2)
(flags :standard -w +a-4-42-44-48-50-58-32-60@8 -safe-string)
)
Loading