mirror of
https://github.com/RustPython/Parser.git
synced 2025-08-04 10:49:55 +00:00
44 lines
938 B
TOML
44 lines
938 B
TOML
[workspace.package]
|
|
version = "0.2.0"
|
|
authors = ["RustPython Team"]
|
|
edition = "2021"
|
|
rust-version = "1.67.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", "literal", "parser",
|
|
]
|
|
|
|
[workspace.dependencies]
|
|
ahash = "0.7.6"
|
|
anyhow = "1.0.45"
|
|
ascii = "1.0"
|
|
bitflags = "1.3.2"
|
|
bstr = "0.2.17"
|
|
cfg-if = "1.0"
|
|
insta = "1.14.0"
|
|
itertools = "0.10.3"
|
|
log = "0.4.16"
|
|
num-complex = "0.4.0"
|
|
num-bigint = "0.4.3"
|
|
num-traits = "0.2"
|
|
rand = "0.8.5"
|
|
serde = "1.0"
|
|
static_assertions = "1.1"
|
|
unicode_names2 = { version = "0.6.0", git = "https://github.com/youknowone/unicode_names2.git", rev = "4ce16aa85cbcdd9cc830410f1a72ef9a235f2fde" }
|
|
|
|
[profile.dev.package."*"]
|
|
opt-level = 3
|
|
|
|
[profile.bench]
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
|
|
[profile.release]
|
|
lto = "thin"
|