[package]
edition = "2018"
name = "yjc"
version = "0.0.1"
authors = ["Yisar"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "tiny javascript compiler"
readme = "README.md"
license = "MIT"
[lib]
name = "yjc"
path = "src/lib.rs"
[[bin]]
name = "yjc"
path = "src/main.rs"
[[test]]
name = "combinators_test"
path = "tests/combinators_test.rs"
[[test]]
name = "parser_tests"
path = "tests/parser_tests.rs"
[dependencies.json]
version = "0.12"
[dependencies.regex]
version = "1.11.1"
[profile.release]
panic = "abort"