-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
37 lines (31 loc) · 1.03 KB
/
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
[package]
name = "javascript_lexer"
version = "0.1.8"
authors = ["retep007 <[email protected]>"]
repository = "https://github.com/retep007/javascript-lexer"
documentation = "https://retep007.github.io/javascript-lexer/"
readme = "README.md"
keywords = ["javscript", "lexer", "parser", "tokenizer", "ecma"]
categories = ["parser-implementations"]
license = "MIT"
description = "Javascript lexer"
edition = "2018"
[badges]
travis-ci = { repository = "retep007/javascript-lexer", branch = "master" }
coveralls = { repository = "retep007/javascript-lexer", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "retep007/javascript-lexer" }
is-it-maintained-open-issues = { repository = "retep007/javascript-lexer" }
maintenance = { status = "actively-developed" }
[dependencies]
internship = "0.6.0"
phf = { version = "0.7.24", features = ["macros"]}
[dev-dependencies]
pretty_assertions = "0.5"
# clippy = "0.0.21"
[profile.release]
lto = true
[profile.bench]
debug = true
lto = true
[features]
default = []