mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-06 03:05:28 -05:00
remove containers.io
This commit is contained in:
parent
bfa5a20f07
commit
9f0b8851b0
4 changed files with 2 additions and 16 deletions
2
Makefile
2
Makefile
|
|
@ -70,8 +70,6 @@ QTESTABLE=$(filter-out $(DONTTEST), \
|
||||||
$(wildcard src/data/*.mli) \
|
$(wildcard src/data/*.mli) \
|
||||||
$(wildcard src/string/*.ml) \
|
$(wildcard src/string/*.ml) \
|
||||||
$(wildcard src/string/*.mli) \
|
$(wildcard src/string/*.mli) \
|
||||||
$(wildcard src/io/*.ml) \
|
|
||||||
$(wildcard src/io/*.mli) \
|
|
||||||
$(wildcard src/unix/*.ml) \
|
$(wildcard src/unix/*.ml) \
|
||||||
$(wildcard src/unix/*.mli) \
|
$(wildcard src/unix/*.mli) \
|
||||||
$(wildcard src/sexp/*.ml) \
|
$(wildcard src/sexp/*.ml) \
|
||||||
|
|
|
||||||
|
|
@ -21,7 +21,6 @@ cross-module dependencies).
|
||||||
|
|
||||||
containers.data:: with additional data structures that don't have an
|
containers.data:: with additional data structures that don't have an
|
||||||
equivalent in the standard library;
|
equivalent in the standard library;
|
||||||
containers.io:: (deprecated)
|
|
||||||
containers.iter:: with list-like and tree-like iterators;
|
containers.iter:: with list-like and tree-like iterators;
|
||||||
containers.string:: (in directory `string`) with
|
containers.string:: (in directory `string`) with
|
||||||
a few packed modules that deal with strings (Levenshtein distance,
|
a few packed modules that deal with strings (Levenshtein distance,
|
||||||
|
|
|
||||||
11
_oasis
11
_oasis
|
|
@ -49,13 +49,6 @@ Library "containers"
|
||||||
BuildDepends: bytes, result
|
BuildDepends: bytes, result
|
||||||
# BuildDepends: bytes, bisect_ppx
|
# BuildDepends: bytes, bisect_ppx
|
||||||
|
|
||||||
Library "containers_io"
|
|
||||||
Path: src/io
|
|
||||||
Modules: Containers_io_is_deprecated
|
|
||||||
BuildDepends: bytes
|
|
||||||
FindlibParent: containers
|
|
||||||
FindlibName: io
|
|
||||||
|
|
||||||
Library "containers_unix"
|
Library "containers_unix"
|
||||||
Path: src/unix
|
Path: src/unix
|
||||||
Modules: CCUnix
|
Modules: CCUnix
|
||||||
|
|
@ -137,7 +130,7 @@ Document containers
|
||||||
XOCamlbuildLibraries:
|
XOCamlbuildLibraries:
|
||||||
containers, containers.iter, containers.data,
|
containers, containers.iter, containers.data,
|
||||||
containers.string, containers.thread,
|
containers.string, containers.thread,
|
||||||
containers.advanced, containers.io, containers.unix, containers.sexp
|
containers.advanced, containers.unix, containers.sexp
|
||||||
|
|
||||||
Executable run_benchs
|
Executable run_benchs
|
||||||
Path: benchs/
|
Path: benchs/
|
||||||
|
|
@ -166,7 +159,7 @@ Executable run_qtest
|
||||||
MainIs: run_qtest.ml
|
MainIs: run_qtest.ml
|
||||||
Build$: flag(tests) && flag(bigarray) && flag(unix) && flag(advanced)
|
Build$: flag(tests) && flag(bigarray) && flag(unix) && flag(advanced)
|
||||||
BuildDepends: containers, containers.string, containers.iter,
|
BuildDepends: containers, containers.string, containers.iter,
|
||||||
containers.io, containers.advanced, containers.sexp,
|
containers.advanced, containers.sexp,
|
||||||
containers.unix, containers.thread,
|
containers.unix, containers.thread,
|
||||||
containers.data,
|
containers.data,
|
||||||
sequence, gen, unix, oUnit, qcheck
|
sequence, gen, unix, oUnit, qcheck
|
||||||
|
|
|
||||||
|
|
@ -96,10 +96,6 @@ CCTrie
|
||||||
CCWBTree
|
CCWBTree
|
||||||
}
|
}
|
||||||
|
|
||||||
{4 Containers.io}
|
|
||||||
|
|
||||||
{b deprecated} use {!CCIO} directly from the set of core modules.
|
|
||||||
|
|
||||||
{4 Containers.unix}
|
{4 Containers.unix}
|
||||||
|
|
||||||
Helpers that depend on {!Unix}, e.g. to spawn sub-processes.
|
Helpers that depend on {!Unix}, e.g. to spawn sub-processes.
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue