[package]
edition = "2024"
rust-version = "1.85"
name = "friend"
version = "0.1.0"
authors = ["David Liedle <david.liedle@gmail.com>"]
build = false
include = [
"src/**/*",
"Cargo.toml",
"LICENSE",
"README.md",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A little CLI that gives you a word of encouragement."
homepage = "https://github.com/DavidLiedle/Friend"
documentation = "https://github.com/DavidLiedle/Friend"
readme = "README.md"
keywords = [
"cli",
"encouragement",
"affirmation",
"motivation",
"friend",
]
categories = ["command-line-utilities"]
license = "MIT"
repository = "https://github.com/DavidLiedle/Friend"
[[bin]]
name = "friend"
path = "src/main.rs"
[dependencies.owo-colors]
version = "4"
features = ["supports-colors"]
[dependencies.rand]
version = "0.9"
[profile.release]
lto = true
codegen-units = 1
strip = true