-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
39 lines (33 loc) · 917 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
[package]
name = "antlr-rust"
version = "0.2.2"
authors = ["Konstantin Anisimov <[email protected]>"]
homepage = "https://github.com/rrevenantt/antlr4rust"
repository = "https://github.com/rrevenantt/antlr4rust"
documentation = "https://docs.rs/antlr-rust"
description = "ANTLR4 runtime for Rust"
readme = "README.md"
edition = "2018"
license = "BSD-3-Clause"
keywords = ["ANTLR","ANTLR4","parsing","runtime"]
categories = ["parsing"]
exclude = ["/build.rs","/grammars","/templates"]
[dependencies]
lazy_static = "^1.4"
uuid = { version = ">=0.8.2, <2.0.0", features = ["serde", "v4"] }
byteorder = "^1"
murmur3 = "=0.4" # 0.5 is incompatible currently
bit-set = "=0.5.*"
once_cell = "^1.2"
#backtrace = "=0.3"
typed-arena = "^2.0"
better_any = "=0.1"
parking_lot = "0.11"
#qcell = { path="../qcell" }
[lib]
#[[test]]
#name = "my_test"
#path="tests/my_test.rs"
[profile.release]
#opt-level = 3
#debug = true