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-09-15 17:00:22 +02:00
|
|
|
[package]
|
2023-09-20 14:32:25 +02:00
|
|
|
autobins = true
|
2023-09-29 18:24:19 +02:00
|
|
|
name = "libpt-bin"
|
2023-09-20 18:15:53 +02:00
|
|
|
publish.workspace = true
|
|
|
|
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
|
2023-09-15 17:00:22 +02:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-09-20 20:35:07 +02:00
|
|
|
[[bin]]
|
|
|
|
name = "ccc"
|
|
|
|
path = "src/ccc/mod.rs"
|
|
|
|
|
2024-01-16 11:31:05 +01:00
|
|
|
[[bin]]
|
|
|
|
name = "hedu"
|
|
|
|
path = "src/hedu/mod.rs"
|
|
|
|
|
2023-09-20 20:35:07 +02:00
|
|
|
[[bin]]
|
2023-09-29 18:24:19 +02:00
|
|
|
name = "libpt"
|
2023-09-20 20:35:07 +02:00
|
|
|
path = "src/main/mod.rs"
|
|
|
|
|
2023-09-15 17:00:22 +02:00
|
|
|
[dependencies]
|
2023-09-20 20:35:07 +02:00
|
|
|
clap = { version = "4.4.4", features = ["derive"] }
|
|
|
|
clap-num = "1.0.2"
|
|
|
|
clap-verbosity-flag = "2.0.1"
|
2024-01-17 01:14:49 +01:00
|
|
|
libpt = { version = "0.2.5-alpha.0", path = "../..", features = [
|
|
|
|
"default",
|
|
|
|
"ccc",
|
|
|
|
"math",
|
|
|
|
"hedu",
|
|
|
|
"net",
|
|
|
|
"log",
|
|
|
|
] }
|