16 lines
271 B
TOML
16 lines
271 B
TOML
[package]
|
|
name = "snakify"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
authors = "m-hgn"
|
|
description = "Quickly snake-caseify any input text"
|
|
|
|
license = "GPL-3.0"
|
|
|
|
license-file = "LICENSE"
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
clap = { version = "4.0.26", features = ["derive"] }
|