-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 855 Bytes
/
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
[package]
name = "mini-haskell"
version = "0.1.0"
authors = ["Krantz-XRF <Krantz.XRF@outlook.com>"]
edition = "2018"
repository = "https://github.com/Krantz-XRF/mini-haskell.git"
homepage = "https://github.com/Krantz-XRF/mini-haskell.git"
license = "AGPL-3.0-or-later"
readme = "README.md"
description = "A toy implementation for Haskell in Rust."
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
num-traits = "0.2"
num-integer = "0.1"
num-bigint = "0.3"
unic-ucd-category = "0.9"
log = { version = "0.4", optional = true }
clap = { version = "2.33", optional = true }
[dev-dependencies]
indoc = "1.0"
expect-test = "1.1"
env_logger = "0.8"
log = "0.4"
[features]
scanner_trace = ["log"]
trace = ["scanner_trace"]
cli = ["clap"]
[[bin]]
name = "mini-haskell"
required-features = ["cli"]