20 lines
398 B
TOML
20 lines
398 B
TOML
[package]
|
|
name = "gotcha-cli"
|
|
version = "1.0.0"
|
|
description = "Command-line Gitea client"
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
rust-version.workspace = true
|
|
|
|
[[bin]]
|
|
name = "gotcha"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
gotcha_gitea = { path = "../gitea" }
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
rpassword.workspace = true
|
|
serde.workspace = true
|
|
serde_yaml.workspace = true
|