ocaml-community / ISO8601.ml

Parser and printer for date-times in ISO8601
https://ocaml-community.github.io/ISO8601.ml
MIT License
28 stars 13 forks source link

Add unix dependency to the META file. #6

Closed yallop closed 8 years ago

yallop commented 8 years ago

Before:

# #require "ISO8601";;
/home/jeremy/.opam/4.02.3/lib/ISO8601: added to search path
/home/jeremy/.opam/4.02.3/lib/ISO8601/ISO8601.cma: loaded
Characters -1--1:
  #require "ISO8601";;

Error: Reference to undefined global `Unix'

After:

# #require "ISO8601";;
/home/jeremy/.opam/4.02.3/lib/ocaml/unix.cma: loaded
/home/jeremy/.opam/4.02.3/lib/ISO8601: added to search path
/home/jeremy/.opam/4.02.3/lib/ISO8601/ISO8601.cma: loaded
#