ruff/crates/ruff_python_literal/Cargo.toml
Zanie Blue 6253d8e2c8
Remove unused runtime string formatting logic (#6624)
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.
2023-08-16 17:38:33 +00:00

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"