-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (42 loc) · 1.14 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[workspace]
members = [
"get-gitgrade-repos",
"ocaml-ast",
"pretty-errors",
"serde-datalog",
]
[package]
authors = ["Nathan Ringo <remexre@gmail.com>"]
description = "An extensible linter for OCaml programs."
homepage = "https://github.com/remexre/extlint"
license = "Apache-2.0/MIT"
name = "extlint"
repository = "https://github.com/remexre/extlint"
version = "0.1.3-pre"
[badges]
travis-ci = { repository = "remexre/swipl-rs" }
[dependencies]
clap = "2.29.4"
ocaml-ast = { path = "ocaml-ast", version = "0.1.0" }
pretty-errors = { path = "pretty-errors" , version = "0.1.0" }
serde = "1.0.30"
serde-datalog = { path = "serde-datalog", version = "0.1.0" }
serde_json = "1.0.9"
structopt = "0.2.5"
serde_derive = "1.0.30"
failure = "0.1.1"
[[bin]]
name = "datalog_of_ocaml"
path = "src/datalog_of_ocaml/main.rs"
[[bin]]
name = "extlint_render_error"
path = "src/extlint_render_error/main.rs"
[[bin]]
name = "json_of_ocaml"
path = "src/json_of_ocaml/main.rs"
[[bin]]
name = "ocaml-syntax-check"
path = "src/ocaml-syntax-check/main.rs"
[patch.crates-io]
# https://github.com/remexre/extlint/issues/2
serde_json = { git = "https://github.com/remexre/json.git" }