forked from RustPython/RustPython
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (26 loc) · 754 Bytes
/
Cargo.toml
File metadata and controls
29 lines (26 loc) · 754 Bytes
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
[package]
name = "rustpython-parser"
version = "0.1.2"
description = "Parser for python code."
authors = [ "RustPython Team" ]
build = "build.rs"
repository = "https://github.com/RustPython/RustPython"
license = "MIT"
edition = "2018"
[features]
std = []
default = ["std", "lalrpop-util/std", "num-bigint/std"]
[build-dependencies]
lalrpop = "0.19.4"
[dependencies]
rustpython-ast = { path = "../ast" }
lalrpop-util = { version = "0.19.4", default-features = false }
log = "0.4.1"
num-bigint = { version = "0.3", default-features = false }
num-traits = { version = "0.2", default-features = false }
unic-emoji-char = "0.9"
unic-ucd-ident = "0.9"
unicode_names2 = "0.4"
phf = { version = "0.8", features = ["macros"] }
ahash = "0.6"
hashbrown = "0.9"