This repository has been archived on 2024-10-16. You can view files and clone it, but cannot push or open issues or pull requests.
2023-07-06 22:06:31 +02:00
|
|
|
[package]
|
2023-07-07 00:36:49 +02:00
|
|
|
name = "libpt"
|
2023-07-06 22:06:31 +02:00
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
2023-07-07 00:36:49 +02:00
|
|
|
authors = ["Christoph J. Scherr <software@cscherr.de>"]
|
|
|
|
license = "GPL3"
|
|
|
|
description = "my personal multitool"
|
|
|
|
readme = "README.md"
|
|
|
|
homepage = "https://git.cscherr.de/PlexSheep/pt"
|
|
|
|
repository = "https://git.cscherr.de/PlexSheep/pt"
|
|
|
|
keywords = ["cli", "python", "scriptable", "pyo3", "library"]
|
|
|
|
categories = ["command-line-utilities"]
|
2023-07-06 22:06:31 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
2023-07-07 00:36:49 +02:00
|
|
|
|
2023-07-06 22:06:31 +02:00
|
|
|
[lib]
|
2023-07-07 00:36:49 +02:00
|
|
|
name = "libpt"
|
|
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
|
|
|
|
[[bin]]
|
2023-07-06 22:06:31 +02:00
|
|
|
name = "pt"
|
2023-07-07 00:36:49 +02:00
|
|
|
path = "src/bin/mod.rs"
|
2023-07-06 22:06:31 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2023-07-07 00:36:49 +02:00
|
|
|
clap = "4.3.11"
|
|
|
|
env_logger = "0.10.0"
|
|
|
|
log = { version = "0.4.19", features = ["max_level_debug", "release_max_level_info"] }
|
2023-07-06 22:06:31 +02:00
|
|
|
pyo3 = "0.18.1"
|