-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
35 lines (31 loc) · 1.18 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
[package]
name = "clearch"
version = "0.1.0"
edition = "2021"
description = "Clearch is a powerful command line tool that combines web search and package management using the Gemini API."
authors = ["Advaith Narayanan <advaith@glitchy.systems>", "The Capstone Project Team MITS"]
license = "MIT"
repository = "https://github.com/The-Capstone-Project/Clearch"
documentation = "https://github.com/The-Capstone-Project/Clearch"
[dependencies]
dotenv = "0.15.0"
serde_json = "1.0.108"
reqwest = { version = "0.11", features = ["json"] }
tokio = { version = "1.35.1", features = ["full"] }
clap = { version = "4.4.11", features = ["derive"] }
sys-info = "0.9.1"
clap-stdin = "0.4.0"
[dev-dependencies]
cargo-deb = "2.6.0"
[profile.release]
panic = "abort"
[package.metadata.deb]
maintainer = "Advaith Narayanan <advaith@glitchy.systems>"
description = "Clearch is a powerful command line tool that combines web search and package management using the Gemini API."
homepage = "https://github.com/The-Capstone-Project/Clearch/"
license-file = "LICENSE"
depends = "libc6, libssl-dev"
replaces = "clearch"
assets = [
["target/release/clearch", "usr/bin"], # This line will place the built binary in /usr/bin
]