generated from PlexSheep/baserepo
32 lines
744 B
TOML
32 lines
744 B
TOML
[package]
|
|
name = "libpt-py"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
authors.workspace = true
|
|
license.workspace = true
|
|
description.workspace = true
|
|
readme.workspace = true
|
|
homepage.workspace = true
|
|
repository.workspace = true
|
|
keywords.workspace = true
|
|
categories.workspace = true
|
|
|
|
[package.metadata.maturin]
|
|
name = "libpt"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
libpt = { version = "0.5.0"}
|
|
pyo3 = { version = "0.19.0", features = ["full"] }
|
|
anyhow.workspace = true
|
|
|
|
[features]
|
|
default = ["log", "core", "full"]
|
|
core = []
|
|
full = ["default", "core", "log", "bintols"]
|
|
log = ["libpt/log"]
|
|
bintols = ["libpt/bintols", "log"]
|