-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 1.23 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
[package]
name = "skiff"
description = "A gradually-typed, functional scripting language with a friendly syntax and compiler/interpreter written in Rust!"
homepage = "https://skiff.paulbiberstein.me/"
documentation = "https://github.com/P-bibs/skiff"
repository = "https://github.com/P-bibs/skiff"
readme = "README.md"
license = "MIT"
version = "0.4.5"
authors = ["Paul Biberstein <biberstein.paul@gmail.com>"]
edition = "2018"
keywords = ["interpreters", "wasm", "programming-language", "cli"]
categories = ["compilers", "parser-implementations", "web-programming"]
[features]
default = ["console_error_panic_hook"]
# [lib]
# crate-type = ["cdylib", "rlib"]
[dependencies]
logos = "0.12.0"
structopt = "0.3.13"
im = "15.0.0"
colored = "2"
wasm-bindgen = "0.2.63"
lazy_static = "1.4.0"
# The `console_error_panic_hook` crate provides better debugging of panics by
# logging them with `console.error`. This is great for development, but requires
# all the `std::fmt` and `std::panicking` infrastructure, so isn't great for
# code size when deploying.
console_error_panic_hook = { version = "0.1.6", optional = true }
[dev-dependencies]
wasm-bindgen-test = "0.3.13"
# [profile.release]
# # Tell `rustc` to optimize for small code size.
# opt-level = "s"