-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
54 lines (45 loc) · 1.24 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
51
52
53
54
[package]
name = "unseemly"
description = "A typed macro language"
version = "0.0.3"
authors = ["Paul Stansifer <[email protected]>"]
edition = "2018"
homepage = "https://unseemly.github.io/"
repository = "https://github.com/paulstansifer/unseemly/"
readme = "README.md"
keywords = ["programming-language"]
license = "MIT"
[badges]
travis-ci = { repository = "paulstansifer/unseemly" }
appveyor = { repository = "paulstansifer/unseemly", service = "github" }
maintenance = { status = "actively-developed" }
[dependencies]
regex = "1.5.5"
num = "0.4.0"
custom_derive = "0.1.7"
dirs = "3.0.2"
tap = "1.0.1"
color-backtrace = "0.5"
im-rc = "15.0"
codespan-reporting = "0.11.1"
ansi-to-html = "0.1.0"
wasm-bindgen = "0.2.76"
indoc = "1.0.3"
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
rustyline = "8.0.0"
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
[[bin]]
name = "unseemly"
path = "src/cli.rs"
# Seems a lot faster to run all the tests in the library.
test = false
[lib]
name = "libunseemly"
path = "src/main.rs"
crate-type = ["cdylib", "rlib"]
[profile.dev]
# After minor changes, using `cargo test` to build and test is slightly *faster* at this opt level:
opt-level = 2
[profile.release]
opt-level = 3