pt/Cargo.toml

86 lines
1.8 KiB
TOML
Raw Normal View History

[workspace]
2023-09-20 14:28:40 +02:00
resolver = "2"
members = [
2023-09-20 18:15:53 +02:00
".",
2023-09-29 18:24:19 +02:00
"members/libpt-core",
"members/libpt-bintols",
"members/libpt-math",
"members/libpt-bin",
"members/libpt-log",
"members/libpt-net",
"members/libpt-hedu",
]
default-members = [
2023-09-20 18:15:53 +02:00
".",
2023-09-29 18:24:19 +02:00
"members/libpt-bin",
"members/libpt-core",
]
2023-09-20 14:32:25 +02:00
[workspace.package]
2023-09-29 18:26:38 +02:00
publish = true
2023-09-20 14:32:25 +02:00
version = "0.1.7"
edition = "2021"
authors = ["Christoph J. Scherr <software@cscherr.de>"]
license = "MIT"
description = "Personal multitool"
readme = "README.md"
2023-09-29 18:24:19 +02:00
homepage = "https://git.cscherr.de/PlexSheep/libpt"
repository = "https://git.cscherr.de/PlexSheep/libpt"
2024-01-16 10:22:07 +01:00
keywords = ["cli", "library"]
2023-09-20 14:32:25 +02:00
categories = ["command-line-utilities", "development-tools", "development-tools::ffi"]
2023-09-20 14:32:25 +02:00
[workspace.dependencies]
2024-01-16 10:18:29 +01:00
anyhow = "1.0.79"
thiserror = "1.0.56"
2023-09-20 18:15:53 +02:00
[package]
name = "libpt"
2023-09-29 18:26:38 +02:00
publish.workspace = true
2023-09-20 18:15:53 +02:00
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
[features]
2023-09-29 18:24:19 +02:00
default = ["log"]
all = [
"default",
"math",
"log",
"bintols",
"net",
"ccc",
"hedu"
]
fw = []
2023-09-20 18:15:53 +02:00
math = []
log = []
bintols = []
net = []
ccc = ["math"]
hedu = ["bintols"]
[lib]
name = "libpt"
crate-type = [
"dylib", # .dll, .so, .dynlib
2023-09-29 18:24:19 +02:00
"staticlib", # .lib, .a
"rlib"
]
2023-09-20 18:15:53 +02:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-01-16 10:33:14 +01:00
libpt-bintols = { path = "members/libpt-bintols" }
libpt-core = { path = "members/libpt-core" }
libpt-hedu = { path = "members/libpt-hedu" }
libpt-log = { path = "members/libpt-log" }
libpt-math = { path = "members/libpt-math" }
libpt-net = { path = "members/libpt-net" }
libpt-ccc = { path = "members/libpt-ccc" }