pt/Cargo.toml

39 lines
1.1 KiB
TOML
Raw Normal View History

2023-07-06 22:06:31 +02:00
[package]
2023-07-07 00:36:49 +02:00
name = "libpt"
2023-07-09 20:50:56 +02:00
version = "0.1.4"
2023-07-06 22:06:31 +02:00
edition = "2021"
2023-07-07 00:36:49 +02:00
authors = ["Christoph J. Scherr <software@cscherr.de>"]
2023-07-08 16:06:12 +02:00
license = "GPL-3.0-or-later"
description = "Personal multitool"
2023-07-07 00:36:49 +02:00
readme = "README.md"
homepage = "https://git.cscherr.de/PlexSheep/pt"
repository = "https://git.cscherr.de/PlexSheep/pt"
keywords = ["cli", "python", "scriptable", "pyo3", "library"]
2023-07-08 16:20:24 +02:00
categories = ["command-line-utilities", "development-tools", "development-tools::ffi"]
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-08 21:22:55 +02:00
path = "src/bin/main/mod.rs"
2023-07-06 22:06:31 +02:00
[dependencies]
2023-07-08 21:22:55 +02:00
clap = { version = "4.3.11", features = ["derive"] }
clap-num = "1.0.2"
2023-07-08 21:22:55 +02:00
clap-verbosity-flag = "2.0.1"
2023-07-07 00:36:49 +02:00
env_logger = "0.10.0"
2023-07-07 21:05:37 +02:00
gag = "1.0.0"
2023-07-09 17:53:20 +02:00
humantime = "2.1.0"
2023-07-07 21:05:37 +02:00
log = { version = "0.4.19", features = ["max_level_trace", "release_max_level_trace"] }
num = "0.4.0"
2023-07-09 20:50:56 +02:00
openssl = "0.10.55"
openssl-sys = "0.9.90"
2023-07-06 22:06:31 +02:00
pyo3 = "0.18.1"
2023-07-07 23:36:55 +02:00
regex = "1.9.1"
reqwest = { version = "0.11.18", features = ["blocking"] }
signal-hook = "0.3.15"