This commit is contained in:
parent
aa2ff7b2f0
commit
2f3113f55d
11742 changed files with 1223940 additions and 0 deletions
2
unikernel/duniverse/bytes/.gitignore
vendored
Normal file
2
unikernel/duniverse/bytes/.gitignore
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
/_build
|
||||
/*.install
|
||||
18
unikernel/duniverse/bytes/LICENSE.txt
Normal file
18
unikernel/duniverse/bytes/LICENSE.txt
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
Copyright (c) 2022 Kate <kit.ty.kate@disroot.org>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of
|
||||
this software and associated documentation files (the "Software"), to deal in
|
||||
the Software without restriction, including without limitation the rights to
|
||||
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
|
||||
the Software, and to permit persons to whom the Software is furnished to do so,
|
||||
subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
||||
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
|
||||
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
|
||||
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
||||
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
14
unikernel/duniverse/bytes/bytes.opam
Normal file
14
unikernel/duniverse/bytes/bytes.opam
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
opam-version: "2.0"
|
||||
version: "0.1.0"
|
||||
license: "MIT"
|
||||
synopsis: "Bytes library distributed with the OCaml compiler"
|
||||
maintainer: "Kate <kit.ty.kate@disroot.org>"
|
||||
authors: "Kate <kit.ty.kate@disroot.org>"
|
||||
homepage: "https://github.com/kit-ty-kate/bytes"
|
||||
bug-reports: "https://github.com/kit-ty-kate/bytes/issues"
|
||||
dev-repo: "git+https://github.com/kit-ty-kate/bytes"
|
||||
depends: [
|
||||
"ocaml" {>= "4.02"}
|
||||
"dune" {>= "1.0"}
|
||||
]
|
||||
build: ["dune" "build" "-p" name "-j" jobs]
|
||||
4
unikernel/duniverse/bytes/dune
Normal file
4
unikernel/duniverse/bytes/dune
Normal file
|
|
@ -0,0 +1,4 @@
|
|||
(library
|
||||
(name bytes)
|
||||
(public_name bytes)
|
||||
(wrapped false))
|
||||
3
unikernel/duniverse/bytes/dune-project
Normal file
3
unikernel/duniverse/bytes/dune-project
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
(lang dune 1.0)
|
||||
(name bytes)
|
||||
(version 0.1.0)
|
||||
Loading…
Add table
Add a link
Reference in a new issue