-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
45 lines (40 loc) · 893 Bytes
/
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
41
42
43
44
45
[package]
authors = ["Nicholas Dujay <nickdujay@gmail.com>"]
categories = [
"parser-implementations",
"parsing",
]
description = "A rust implementation of an ECMAScript parser"
documentation = "https://docs.rs/ecmascript"
homepage = "https://github.com/dat2/ecmascript"
keywords = [
"ecmascript",
"javascript",
"parser",
]
license = "MIT"
name = "ecmascript"
readme = "README.md"
repository = "https://github.com/dat2/ecmascript"
version = "0.2.0"
[badges.codecov]
branch = "master"
repository = "dat2/ecmascript"
service = "github"
[badges.maintenance]
status = "actively-developed"
[badges.travis-ci]
branch = "master"
repository = "dat2/ecmascript"
[dependencies]
clap = "2.32.0"
combine = "3.3.2"
failure = "0.1.1"
glob = "0.2.11"
lazy_static = "1.0.1"
serde = "1.0.70"
serde_derive = "1.0.70"
serde_json = "1.0.22"
unicode-xid = "0.1.0"
[lib]
name = "ecmascript"