-
Notifications
You must be signed in to change notification settings - Fork 29
/
Cargo.toml
52 lines (46 loc) · 1.35 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
[workspace.package]
version = "0.4.0"
authors = ["RustPython Team"]
edition = "2021"
rust-version = "1.72.1"
description = "Python parser and its dependencies."
repository = "https://github.com/RustPython/Parser"
license = "MIT"
include = ["LICENSE", "Cargo.toml", "src/**/*.rs"]
[workspace]
resolver = "2"
members = [
"ast", "core", "format", "literal", "parser", "vendored",
]
[workspace.dependencies]
rustpython-parser-vendored = { path = "vendored", version = "0.4.0" }
rustpython-ast = { path = "ast", default-features = false, version = "0.4.0" }
rustpython-parser-core = { path = "core", features = [], version = "0.4.0" }
rustpython-literal = { path = "literal", version = "0.4.0" }
rustpython-format = { path = "format", default-features = false, version = "0.4.0" }
rustpython-parser = { path = "parser", default-features = false, version = "0.4.0" }
anyhow = "1.0.45"
bitflags = "2.4.0"
cfg-if = "1.0"
insta = "1.14.0"
itertools = "0.11.0"
is-macro = "0.3.0"
log = "0.4.16"
num-complex = "0.4.0"
num-bigint = "0.4.3"
num-traits = "0.2"
malachite-bigint = "0.2.0"
memchr = "2.5.0"
rand = "0.8.5"
serde = { version = "1.0.133", default-features = false }
static_assertions = "1.1"
once_cell = "1.18.0"
unicode_names2 = "1.1.0"
[profile.dev.package."*"]
opt-level = 3
[profile.bench]
lto = "thin"
codegen-units = 1
opt-level = 3
[profile.release]
lto = "thin"