mirror of
https://github.com/zaphar/ucg.git
synced 2025-07-22 18:19:54 -04:00
commit e4c80b19f5149fb7dba0a9b785e22ff5323b5470 Author: Jeremy Wall <jeremy@marzhillstudios.com> Date: Sun Nov 4 09:54:16 2018 -0600 FEATURE: report better stacktraces for parsing. commit 24b97c1037d6ddbe21f32e172b1c14cd2cfb9910 Author: Jeremy Wall <jeremy@marzhillstudios.com> Date: Wed Oct 17 19:00:29 2018 -0500 FEATURE: Use context for our error reporting. commit c22d397545e7575608e34561a274745b28be8c2c Author: Jeremy Wall <jeremy@marzhillstudios.com> Date: Sun Oct 14 14:18:42 2018 -0500 FIX: Better error reporting. commit 7f47dc3f38bf6a3e8686c1fa3fd50ef97d4bf3af Author: Jeremy Wall <jeremy@marzhillstudios.com> Date: Sat Oct 13 19:42:22 2018 -0500 REFACTOR: Pass our offsets everywhere. commit 91d7ed690bfd9989270ba9fa4f44c70f513d54b9 Author: Jeremy Wall <jeremy@marzhillstudios.com> Date: Sun Sep 23 15:08:45 2018 -0500 REFACTOR: Use abortable_parser.
51 lines
925 B
TOML
51 lines
925 B
TOML
[package]
|
|
name = "ucg"
|
|
version = "0.2.0"
|
|
authors = ["Jeremy Wall <jeremy@marzhillstudios.com>"]
|
|
description = "A configuration generation grammar."
|
|
repository = "https://github.com/zaphar/ucg"
|
|
documentation = "https://docs.rs/crate/ucg"
|
|
readme = "README.md"
|
|
keywords = ["compiler", "config"]
|
|
license = "Apache-2.0"
|
|
|
|
[dependencies]
|
|
abortable_parser = "0.2.1"
|
|
clap = "~2.26.0"
|
|
serde_json = "~1.0.9"
|
|
simple-error = "0.1"
|
|
serde_yaml = "~0.8.1"
|
|
|
|
[dev-dependencies]
|
|
bencher = "~0.1.5"
|
|
cpuprofiler = "0.0.3"
|
|
|
|
[[bench]]
|
|
name = "parse"
|
|
harness = false
|
|
path = "src/benches/parse.rs"
|
|
|
|
[profile.bench]
|
|
opt-level = 0
|
|
debug = true
|
|
rpath = false
|
|
lto = false
|
|
debug-assertions = false
|
|
codegen-units = 16
|
|
incremental = false
|
|
overflow-checks = false
|
|
|
|
[profile.release]
|
|
debug = true
|
|
|
|
[lib]
|
|
name = "ucglib"
|
|
path = "src/lib.rs"
|
|
bench = false
|
|
|
|
[[bin]]
|
|
name = "ucg"
|
|
path = "src/main.rs"
|
|
|
|
[features]
|
|
tracing = [] |