mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-27 15:55:16 +00:00
be31dc3ce1
Differential Revision: https://phabricator.services.mozilla.com/D69886 --HG-- rename : third_party/rust/jsparagus-emitter/src/scope_pass.rs => third_party/rust/jsparagus-scope/src/context.rs rename : third_party/rust/jsparagus-emitter/src/scope.rs => third_party/rust/jsparagus-scope/src/data.rs rename : third_party/rust/jsparagus-emitter/src/frame_slot.rs => third_party/rust/jsparagus-scope/src/frame_slot.rs extra : moz-landing-system : lando
25 lines
527 B
TOML
25 lines
527 B
TOML
[package]
|
|
name = "jsparagus-parser"
|
|
version = "0.1.0"
|
|
authors = ["Jason Orendorff <jason.orendorff@gmail.com>"]
|
|
edition = "2018"
|
|
license = "MIT/Apache-2.0"
|
|
|
|
[dependencies]
|
|
bumpalo = "2.6.0"
|
|
jsparagus-ast = { path = "../ast" }
|
|
jsparagus-json-log = { path = "../json-log" }
|
|
jsparagus-generated-parser = { path = "../generated_parser" }
|
|
unic-ucd-ident = { version = "0.9.0", features = ["id"] }
|
|
|
|
[features]
|
|
logging = ["jsparagus-json-log/logging"]
|
|
|
|
[dev-dependencies]
|
|
criterion = "0.3"
|
|
|
|
[[bench]]
|
|
name = "parser"
|
|
harness = false
|
|
|