Files
RustPython/pylib/Cargo.toml
2024-08-08 23:20:17 +09:00

23 lines
604 B
TOML

[package]
name = "rustpython-pylib"
description = "A subset of the Python standard library for use with RustPython"
license-file = "Lib/PSF-LICENSE"
include = ["Cargo.toml", "src/**/*.rs", "Lib/", "!Lib/**/test/", "!Lib/**/*.pyc"]
authors = ["CPython Developers"]
version.workspace = true
edition.workspace = true
rust-version.workspace = true
repository.workspace = true
[features]
freeze-stdlib = []
[dependencies]
rustpython-compiler-core = { workspace = true }
rustpython-derive = { version = "0.4.0", path = "../derive" }
[build-dependencies]
glob = { workspace = true }
[lints]
workspace = true