-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
45 lines (38 loc) · 1.34 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
[package]
name = "minitt"
version = "0.4.3"
authors = ["ice1000 <ice1000kotlin@foxmail.com>"]
edition = "2018"
license = "Apache-2.0"
description = "Mini-TT, a dependently-typed lambda calculus, extended and (re)implemented in Rust"
readme = ".github/README.md"
categories = ["development-tools"]
documentation = "https://docs.rs/minitt"
repository = "https://github.com/owo-lang/minitt-rs"
[package.metadata.docs.rs]
features = ["parser"]
rustdoc-args = ["--html-in-header", "rustdoc/katex-header.html", "--document-private-items"]
[badges]
# appveyor = { repository = "owo-lang/minitt-rs", service = "github" }
# circle-ci = { repository = "owo-lang/minitt-rs", branch = "master" }
maintenance = { status = "as-is" }
[workspace]
members = ["minitt-util"]
[dependencies]
pest = { version = "2.1.2", features = ["pretty-print"], optional = true }
pest_derive = { version = "2.1", optional = true }
clap = { version = "2.33", optional = true }
minitt-util = { version = "0.2.4", features = ["cli", "repl"], optional = true }
structopt = { version = "0.3", optional = true }
rustyline = { version = "6.3", optional = true }
either = "1.5"
[features]
parser = ["pest", "pest_derive"]
cli = ["clap", "structopt", "rustyline", "minitt-util"]
[lib]
name = "minitt"
path = "src/lib.rs"
[[bin]]
name = "minittc"
path = "src/cli/mod.rs"
required-features = ["cli", "parser"]