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

Use bigarray-compat #27

Merged
merged 1 commit into from
Jan 28, 2020
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
1 change: 1 addition & 0 deletions asn1-combinators.opam
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ depends: [
"dune" {build}
"cstruct" {>= "1.6.0"}
"zarith"
"bigarray-compat"
"ptime"
"alcotest" {with-test}
]
Expand Down
1 change: 1 addition & 0 deletions src/asn_prim.ml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
open Asn_core

module Writer = Asn_writer
module Bigarray = Bigarray_compat

module type Prim = sig
type t
Expand Down
2 changes: 1 addition & 1 deletion src/dune
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
(name asn1_combinators)
(public_name asn1-combinators)
(synopsis "Embed typed ASN.1 grammars in OCaml")
(libraries cstruct zarith ptime)
(libraries cstruct zarith bigarray-compat ptime)
(wrapped false)
(private_modules asn_oid asn_cache asn_writer asn_prim asn_core asn_random
asn_combinators asn_ber_der))
Expand Down