forked from Rust-related/RustPython
23 lines
604 B
TOML
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 |