mirror of
https://github.com/astral-sh/ruff
synced 2026-01-11 00:24:13 -05:00
72 lines
2.4 KiB
TOML
72 lines
2.4 KiB
TOML
[workspace]
|
|
members = ["crates/*"]
|
|
|
|
[workspace.package]
|
|
edition = "2021"
|
|
rust-version = "1.67"
|
|
homepage = "https://beta.ruff.rs/docs/"
|
|
documentation = "https://beta.ruff.rs/docs/"
|
|
repository = "https://github.com/charliermarsh/ruff"
|
|
authors = ["Charlie Marsh <charlie.r.marsh@gmail.com>"]
|
|
|
|
[workspace.dependencies]
|
|
anyhow = { version = "1.0.69" }
|
|
bitflags = { version = "1.3.2" }
|
|
chrono = { version = "0.4.23", default-features = false, features = ["clock"] }
|
|
clap = { version = "4.1.8", features = ["derive"] }
|
|
colored = { version = "2.0.0" }
|
|
filetime = { version = "0.2.20" }
|
|
glob = { version = "0.3.1" }
|
|
globset = { version = "0.4.10" }
|
|
ignore = { version = "0.4.20" }
|
|
insta = { version = "1.28.0" }
|
|
is-macro = { version = "0.2.2" }
|
|
itertools = { version = "0.10.5" }
|
|
libcst = { git = "https://github.com/charliermarsh/LibCST", rev = "80e4c1399f95e5beb532fdd1e209ad2dbb470438" }
|
|
log = { version = "0.4.17" }
|
|
once_cell = { version = "1.17.1" }
|
|
path-absolutize = { version = "3.0.14" }
|
|
proc-macro2 = { version = "1.0.51" }
|
|
quote = { version = "1.0.23" }
|
|
regex = { version = "1.7.1" }
|
|
rustc-hash = { version = "1.1.0" }
|
|
rustpython-common = { git = "https://github.com/RustPython/RustPython.git", rev = "c15f670f2c30cfae6b41a1874893590148c74bc4" }
|
|
rustpython-parser = { features = [
|
|
"lalrpop",
|
|
"serde",
|
|
], git = "https://github.com/RustPython/RustPython.git", rev = "c15f670f2c30cfae6b41a1874893590148c74bc4" }
|
|
schemars = { version = "0.8.12" }
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = { version = "1.0.93" }
|
|
shellexpand = { version = "3.0.0" }
|
|
similar = { version = "2.2.1" }
|
|
strum = { version = "0.24.1", features = ["strum_macros"] }
|
|
strum_macros = { version = "0.24.3" }
|
|
syn = { version = "1.0.109" }
|
|
test-case = { version = "3.0.0" }
|
|
textwrap = { version = "0.16.0" }
|
|
toml = { version = "0.7.2" }
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
lto = "thin"
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.insta]
|
|
opt-level = 3
|
|
|
|
[profile.dev.package.similar]
|
|
opt-level = 3
|
|
|
|
# Reduce complexity of a parser function that would trigger a locals limit in a wasm tool.
|
|
# https://github.com/bytecodealliance/wasm-tools/blob/b5c3d98e40590512a3b12470ef358d5c7b983b15/crates/wasmparser/src/limits.rs#L29
|
|
[profile.dev.package.rustpython-parser]
|
|
opt-level = 1
|
|
|
|
# Use the `--profile release-debug` flag to show symbols in release mode.
|
|
# e.g. `cargo build --profile release-debug`
|
|
[profile.release-debug]
|
|
inherits = "release"
|
|
debug = 1
|