RustPython-Parser/format/Cargo.toml
Micha Reiser a983f4383f
Add format and cformat modules from RustPython (#24)
* Add `format` and `cformat` modules from `RustPython`

* Introduce `rustpython-format` crate

* Remove unused dependencies
2023-05-12 18:27:05 +09:00

16 lines
384 B
TOML

[package]
name = "rustpython-format"
edition = "2021"
version = "0.2.0"
description = "Format helpers for RustPython"
authors = ["RustPython Team"]
repository = "https://github.com/RustPython/Parser/"
license = "MIT"
[dependencies]
rustpython-literal = { workspace = true }
bitflags = "2.2.1"
itertools = "0.10.5"
num-bigint = { workspace = true }
num-traits = { workspace = true }