mirror of
https://github.com/babichjacob/ac-qu-ai-nt.git
synced 2025-10-02 04:47:53 -04:00
22 lines
726 B
TOML
22 lines
726 B
TOML
[package]
|
|
name = "ac-qu-ai-nt"
|
|
description = "A WIP project using AI to break down a user's query, acquire the knowledge to answer it, then transfer those insights to the user"
|
|
version = "0.0.4"
|
|
edition = "2021"
|
|
rust-version = "1.76"
|
|
|
|
authors = { workspace = true }
|
|
license = { workspace = true }
|
|
repository = { workspace = true }
|
|
|
|
[features]
|
|
default = ["cli-clap", "tracing"]
|
|
cli-clap = ["dep:ac-qu-ai-nt-cli-clap"]
|
|
tracing = ["dep:tracing-subscriber", "ac-qu-ai-nt-cli-clap?/tracing"]
|
|
|
|
[dependencies]
|
|
ac-qu-ai-nt-cli-clap = { version = "0.0.4", path = "../cli-clap", optional = true }
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
|
dirs-next = "2.0.0"
|
|
tracing-subscriber = { version = "0.3.18", optional = true }
|