You've already forked uutils-args
mirror of
https://github.com/uutils/uutils-args.git
synced 2026-06-10 16:13:08 -07:00
0d7c1b747f
The markdown rendering is too complicated at the moment and slows the rest of development down too much. We can add it back in later. The generated code for the help string now writes directly to stdout, instead of building up a String, this leads to nicer code and is probably faster.
20 lines
371 B
TOML
20 lines
371 B
TOML
[package]
|
|
name = "uutils-args"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Terts Diepraam"]
|
|
license = "MIT"
|
|
|
|
homepage = "https://github.com/tertsdiepraam/uutils-args"
|
|
repository = "https://github.com/tertsdiepraam/uutils-args"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
derive = { version = "0.1.0", path = "derive" }
|
|
lexopt = "0.3.0"
|
|
|
|
[workspace]
|
|
members = [
|
|
"derive",
|
|
]
|