-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfsharp_core_kernel.opam
More file actions
24 lines (23 loc) · 1.09 KB
/
fsharp_core_kernel.opam
File metadata and controls
24 lines (23 loc) · 1.09 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
opam-version: "2.0"
maintainer: "Jane Street developers"
authors: ["Jane Street Group, LLC"]
homepage: "https://github.com/janestreet/fsharp_core_kernel"
bug-reports: "https://github.com/janestreet/fsharp_core_kernel/issues"
dev-repo: "git+https://github.com/janestreet/fsharp_core_kernel.git"
doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/fsharp_core_kernel/index.html"
license: "MIT"
build: [
["dune" "build" "-p" name "-j" jobs]
]
depends: [
"ocaml" {>= "4.08.0"}
"dune" {>= "2.0.0"}
]
available: arch != "arm32" & arch != "x86_32"
synopsis: "Extensions of the dotnet standard library"
description: "
Core_kernel contains F# libraries that are shared across all of our F# projects. It is meant to mirror the use-case of our OCaml Core library. Many libraries just alias dotnet standard library tools to be consistent with Jane Street's naming style.
Our F# projects use relative paths for project references. It is likely that these will
need to be modified depending on your directory structure. [fsharp_core_kernel] has a
dependency on another one of our open source projects [fsharp_bin_prot].
"