pay-respects/module-request-ai/Cargo.toml

33 lines
775 B
TOML
Raw Normal View History

2024-12-08 16:39:29 +01:00
[package]
2024-12-08 17:46:43 +01:00
name = "pay-respects-module-request-ai"
2024-12-10 19:05:20 +01:00
version = "0.1.3"
2024-12-08 16:39:29 +01:00
edition = "2021"
2024-12-08 17:57:16 +01:00
description = "AI request module for the pay-respects CLI tool"
homepage = "https://codeberg.org/iff/pay-respects"
repository = "https://github.com/iffse/pay-respects"
2024-12-10 19:02:10 +01:00
license = "AGPL-3.0-or-later"
2024-12-08 17:57:16 +01:00
include = ["**/*.rs"]
2024-12-08 16:39:29 +01:00
[dependencies]
colored = "2"
sys-locale = "0.3"
rust-i18n = "3"
serde_json = { version = "1.0" }
serde = { version = "1.0", features = ["derive"]}
textwrap = "0.16"
terminal_size = "0.4"
2024-12-08 16:39:29 +01:00
curl = { version = "0.4", optional = true }
[features]
2024-12-08 19:21:40 +01:00
default = ["libcurl"]
2024-12-08 16:39:29 +01:00
# linking to libcurl dynamically requires openssl when compiling and
# complicates cross compilation
libcurl = ["dep:curl"]
2024-12-08 17:46:43 +01:00
[[bin]]
2024-12-08 22:56:43 +01:00
name = "_pay-respects-fallback-100-request-ai"
2024-12-08 17:46:43 +01:00
path = "src/main.rs"