blob: e765ef43b0e89098e8f1d6921574123efccaed6e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
[package]
name = "jsparagus-emitter"
version = "0.1.0"
authors = ["khyperia <github@khyperia.com>"]
edition = "2018"
license = "MIT/Apache-2.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bumpalo = "3.4.0"
byteorder = "1.3.2"
indexmap = "1.0"
jsparagus-ast = { path = "../ast" }
jsparagus-scope = { path = "../scope" }
jsparagus-stencil = { path = "../stencil" }
[dev-dependencies]
jsparagus-parser = { path = "../parser" }
|