Crates.io | unicount |
lib.rs | unicount |
version | |
source | src |
created_at | 2024-10-26 16:12:51.280926 |
updated_at | 2024-12-05 02:46:52.641588 |
description | Alphabetic counter supporting unicode |
homepage | |
repository | https://github.com/qtfkwk/unicount |
max_upload_size | |
id | 1423979 |
Cargo.toml error: | TOML parse error at line 17, column 1 | 17 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
$ unicount -V
unicount 0.1.1
$ unicount -h
Alphabetic counter supporting unicode
Usage: unicount [OPTIONS]
Options:
-k, --kind <KIND> Kind [default: english-upper] [possible values:
english-upper, english-lower]
-s, --start <START> Start [default: 0]
-t, --take <TAKE> Take [default: 100]
-S, --separator <SEPARATOR> Separator [default: \n]
-a, --alphabet <ALPHABET> Custom alphabet
-h, --help Print help
-V, --version Print version
$ unicount
A
B
C
...
CT
CU
CV
$ unicount -k english-lower
a
b
c
...
ct
cu
cv
$ unicount -s 23 -t 6
X
Y
Z
AA
AB
AC
$ unicount -a abc -t 10
a
b
c
aa
ab
ac
ba
bb
bc
ca
$ unicount -S ", " -t 10
A, B, C, D, E, F, G, H, I, J