22 lines
595 B
TOML
22 lines
595 B
TOML
[package]
|
|
name = "rustpython-literal"
|
|
version = "0.2.0"
|
|
description = "Common literal handling utilities mostly useful for unparse and repr."
|
|
authors = ["RustPython Team"]
|
|
edition = "2021"
|
|
repository = "https://github.com/RustPython/Parser/"
|
|
license = "MIT"
|
|
|
|
[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-bigint = { workspace = true }
|
|
num-traits = { workspace = true }
|
|
unic-ucd-category = "0.9"
|
|
|
|
[dev-dependencies]
|
|
rand = { workspace = true }
|