mirror of
https://github.com/c-cube/ocaml-containers.git
synced 2025-12-07 19:55:31 -05:00
re-generate oasis files; remove dep on oasis in opam
This commit is contained in:
parent
c16af69fb3
commit
d541de5d03
10 changed files with 7763 additions and 52 deletions
|
|
@ -1,5 +1,5 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: e5c366e1cd8e09a92eff04bbdc3ad4f9)
|
||||
# DO NOT EDIT (digest: 0670f1d87f40756af3f470a0fbb07a1b)
|
||||
src/core/CCVector
|
||||
src/core/CCPrint
|
||||
src/core/CCError
|
||||
|
|
@ -24,6 +24,7 @@ src/core/CCFormat
|
|||
src/core/CCIO
|
||||
src/core/CCInt64
|
||||
src/core/CCChar
|
||||
src/core/CCResult
|
||||
src/core/Containers
|
||||
src/iter/CCKTree
|
||||
src/iter/CCKList
|
||||
|
|
@ -58,10 +59,12 @@ src/string/CCApp_parse
|
|||
src/string/CCParse
|
||||
src/bigarray/CCBigstring
|
||||
src/bigarray/CCArray1
|
||||
src/threads/CCFuture
|
||||
src/threads/CCPool
|
||||
src/threads/CCLock
|
||||
src/threads/CCSemaphore
|
||||
src/threads/CCThread
|
||||
src/threads/CCBlockingQueue
|
||||
src/threads/CCTimer
|
||||
src/advanced/Containers_advanced
|
||||
src/advanced/CCLinq
|
||||
src/advanced/CCBatch
|
||||
|
|
|
|||
1
opam
1
opam
|
|
@ -29,7 +29,6 @@ depends: [
|
|||
"base-bytes"
|
||||
"result"
|
||||
"cppo" {build}
|
||||
"oasis" {build}
|
||||
"ocamlbuild" {build}
|
||||
]
|
||||
depopts: [ "sequence" "base-bigarray" "base-unix" "base-threads" ]
|
||||
|
|
|
|||
|
|
@ -1,15 +1,15 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: c783171c5b71c6a746d5d622c2f8b012)
|
||||
version = "0.15"
|
||||
# DO NOT EDIT (digest: 6791ff3a69a4e02811e4c0d33830d0e7)
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "bytes"
|
||||
requires = "bytes result"
|
||||
archive(byte) = "containers.cma"
|
||||
archive(byte, plugin) = "containers.cma"
|
||||
archive(native) = "containers.cmxa"
|
||||
archive(native, plugin) = "containers.cmxs"
|
||||
exists_if = "containers.cma"
|
||||
package "unix" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "bytes unix"
|
||||
archive(byte) = "containers_unix.cma"
|
||||
|
|
@ -20,7 +20,7 @@ package "unix" (
|
|||
)
|
||||
|
||||
package "top" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires =
|
||||
"compiler-libs.common containers containers.data containers.bigarray containers.string containers.unix containers.sexp containers.iter"
|
||||
|
|
@ -32,7 +32,7 @@ package "top" (
|
|||
)
|
||||
|
||||
package "thread" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "containers threads"
|
||||
archive(byte) = "containers_thread.cma"
|
||||
|
|
@ -43,7 +43,7 @@ package "thread" (
|
|||
)
|
||||
|
||||
package "string" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "bytes"
|
||||
archive(byte) = "containers_string.cma"
|
||||
|
|
@ -54,7 +54,7 @@ package "string" (
|
|||
)
|
||||
|
||||
package "sexp" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "bytes"
|
||||
archive(byte) = "containers_sexp.cma"
|
||||
|
|
@ -65,7 +65,7 @@ package "sexp" (
|
|||
)
|
||||
|
||||
package "iter" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
archive(byte) = "containers_iter.cma"
|
||||
archive(byte, plugin) = "containers_iter.cma"
|
||||
|
|
@ -75,7 +75,7 @@ package "iter" (
|
|||
)
|
||||
|
||||
package "io" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "bytes"
|
||||
archive(byte) = "containers_io.cma"
|
||||
|
|
@ -86,7 +86,7 @@ package "io" (
|
|||
)
|
||||
|
||||
package "data" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "bytes"
|
||||
archive(byte) = "containers_data.cma"
|
||||
|
|
@ -97,7 +97,7 @@ package "data" (
|
|||
)
|
||||
|
||||
package "bigarray" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "containers bigarray bytes"
|
||||
archive(byte) = "containers_bigarray.cma"
|
||||
|
|
@ -108,7 +108,7 @@ package "bigarray" (
|
|||
)
|
||||
|
||||
package "advanced" (
|
||||
version = "0.15"
|
||||
version = "0.16"
|
||||
description = "A modular standard library focused on data structures."
|
||||
requires = "containers sequence"
|
||||
archive(byte) = "containers_advanced.cma"
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: be2123bb1eb73a2b66dfe501caffd4a2)
|
||||
# DO NOT EDIT (digest: bf6db1e8114e0b3136182bb22642e863)
|
||||
CCVector
|
||||
CCPrint
|
||||
CCError
|
||||
|
|
@ -24,5 +24,6 @@ CCFormat
|
|||
CCIO
|
||||
CCInt64
|
||||
CCChar
|
||||
CCResult
|
||||
Containers
|
||||
# OASIS_STOP
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: be2123bb1eb73a2b66dfe501caffd4a2)
|
||||
# DO NOT EDIT (digest: bf6db1e8114e0b3136182bb22642e863)
|
||||
CCVector
|
||||
CCPrint
|
||||
CCError
|
||||
|
|
@ -24,5 +24,6 @@ CCFormat
|
|||
CCIO
|
||||
CCInt64
|
||||
CCChar
|
||||
CCResult
|
||||
Containers
|
||||
# OASIS_STOP
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: 5a6b0b500f96e1bf483c59a5b5b8c034)
|
||||
CCFuture
|
||||
# DO NOT EDIT (digest: 5cf3cd134d141ea5acafb464c2b3e927)
|
||||
CCPool
|
||||
CCLock
|
||||
CCSemaphore
|
||||
CCThread
|
||||
CCBlockingQueue
|
||||
CCTimer
|
||||
# OASIS_STOP
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: 5a6b0b500f96e1bf483c59a5b5b8c034)
|
||||
CCFuture
|
||||
# DO NOT EDIT (digest: 5cf3cd134d141ea5acafb464c2b3e927)
|
||||
CCPool
|
||||
CCLock
|
||||
CCSemaphore
|
||||
CCThread
|
||||
CCBlockingQueue
|
||||
CCTimer
|
||||
# OASIS_STOP
|
||||
|
|
|
|||
4
src/top/containers_top.mldylib
Normal file
4
src/top/containers_top.mldylib
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: 06c9d81e0a532aa96d3f60ef4ed7045d)
|
||||
Containers_top
|
||||
# OASIS_STOP
|
||||
4
src/top/containers_top.mllib
Normal file
4
src/top/containers_top.mllib
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
# OASIS_START
|
||||
# DO NOT EDIT (digest: 06c9d81e0a532aa96d3f60ef4ed7045d)
|
||||
Containers_top
|
||||
# OASIS_STOP
|
||||
Loading…
Add table
Reference in a new issue