2023-09-15 17:00:22 +02:00
|
|
|
[workspace]
|
2023-09-20 14:28:40 +02:00
|
|
|
resolver = "2"
|
2023-09-15 17:00:22 +02:00
|
|
|
members = [
|
2024-01-16 11:31:05 +01:00
|
|
|
".",
|
|
|
|
"members/libpt-core",
|
|
|
|
"members/libpt-bintols",
|
|
|
|
"members/libpt-math",
|
|
|
|
"members/libpt-bin",
|
|
|
|
"members/libpt-log",
|
|
|
|
"members/libpt-net",
|
|
|
|
"members/libpt-hedu",
|
2023-09-15 17:00:22 +02:00
|
|
|
]
|
2024-01-16 11:31:05 +01:00
|
|
|
default-members = [".", "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
|
2024-01-17 12:35:52 +01:00
|
|
|
version = "0.2.0-alpha.3"
|
2023-09-20 14:32:25 +02:00
|
|
|
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"]
|
2024-01-16 11:31:05 +01:00
|
|
|
categories = [
|
|
|
|
"command-line-utilities",
|
|
|
|
"development-tools",
|
|
|
|
"development-tools::ffi",
|
|
|
|
]
|
2023-09-15 17:00:22 +02:00
|
|
|
|
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"
|
2024-01-17 12:35:36 +01:00
|
|
|
libpt-log = { version = "0.2.0-alpha.2", path = "../libpt-log" }
|
|
|
|
libpt-bintols = { version = "0.2.0-alpha.2", ath = "../libpt-bintols" }
|
2023-09-20 18:15:53 +02:00
|
|
|
|
|
|
|
[package]
|
2023-09-20 18:37:06 +02:00
|
|
|
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]
|
2024-01-16 11:31:05 +01:00
|
|
|
default = ["log", "core"]
|
|
|
|
all = ["default", "math", "log", "bintols", "net", "ccc", "hedu", "core"]
|
|
|
|
core = []
|
|
|
|
fw = []
|
|
|
|
math = []
|
|
|
|
log = []
|
2023-09-20 18:15:53 +02:00
|
|
|
bintols = []
|
2024-01-16 11:31:05 +01:00
|
|
|
net = []
|
|
|
|
ccc = ["math"]
|
|
|
|
hedu = ["bintols"]
|
2023-09-20 18:15:53 +02:00
|
|
|
|
2023-09-20 18:37:06 +02:00
|
|
|
[lib]
|
|
|
|
name = "libpt"
|
|
|
|
crate-type = [
|
2024-01-16 11:31:05 +01:00
|
|
|
"dylib", # .dll, .so, .dynlib
|
|
|
|
"staticlib", # .lib, .a
|
|
|
|
"rlib",
|
2023-09-20 18:37:06 +02:00
|
|
|
]
|
|
|
|
|
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-17 12:35:36 +01:00
|
|
|
libpt-bintols = { version = "0.2.0-alpha.2", path = "members/libpt-bintols", registry="cscherr"}
|
|
|
|
libpt-core = { version = "0.2.0-alpha.2", path = "members/libpt-core", registry="cscherr" }
|
|
|
|
libpt-hedu = { version = "0.2.0-alpha.2", path = "members/libpt-hedu", registry="cscherr" }
|
|
|
|
libpt-log = { version = "0.2.0-alpha.2", path = "members/libpt-log", registry="cscherr" }
|
|
|
|
libpt-math = { version = "0.2.0-alpha.2", path = "members/libpt-math", registry="cscherr" }
|
|
|
|
libpt-ccc = { version = "0.2.0-alpha.2", path = "members/libpt-ccc", registry="cscherr" }
|
|
|
|
libpt-net = { version = "0.2.0-alpha.2", path = "members/libpt-net", registry="cscherr" }
|