mirror of
https://github.com/astral-sh/ruff.git
synced 2025-08-03 02:12:22 +00:00

In https://github.com/astral-sh/ruff/pull/6616 we are adding support for nested replacements in format specifiers which makes actually formatting strings infeasible without a great deal of complexity. Since we're not using these functions (they just exist for runtime use in RustPython), we can just remove them.
24 lines
725 B
TOML
24 lines
725 B
TOML
[package]
|
|
name = "ruff_python_literal"
|
|
version = "0.0.0"
|
|
publish = false
|
|
description = "Common literal handling utilities mostly useful for unparse and repr."
|
|
authors = ["Charlie Marsh <charlie.r.marsh@gmail.com>", "RustPython Team"]
|
|
edition = { workspace = true }
|
|
rust-version = { workspace = true }
|
|
homepage = { workspace = true }
|
|
documentation = { workspace = true }
|
|
repository = { workspace = true }
|
|
license = { workspace = true }
|
|
|
|
[dependencies]
|
|
bitflags = { workspace = true }
|
|
hexf-parse = "0.2.1"
|
|
is-macro.workspace = true
|
|
itertools = { workspace = true }
|
|
lexical-parse-float = { version = "0.8.0", features = ["format"] }
|
|
num-traits = { workspace = true }
|
|
unic-ucd-category = "0.9"
|
|
|
|
[dev-dependencies]
|
|
rand = "0.8.5"
|