-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathCargo.toml
42 lines (39 loc) · 1.07 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
36
37
38
39
40
41
42
[package]
name = "bard-rs"
version = "1.2.7"
edition = "2021"
authors = ["Seok Won Choi <ikr@kakao.com>"]
description = "Google Gemini CLI (Bard)"
license = "MIT"
repository = "https://github.com/Alfex4936/Bard-rs"
keywords = ["Google", "Bard", "Gemini", "Chatbot", "CLI"]
[dependencies]
clap = { version = "4", features = ["derive"] }
dotenv = "0.15.0"
flate2 = "1.0"
rand = "0.8"
regex = "1.10"
colored = "2.1"
reqwest = { version = "0.12", features = ["cookies", "json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
tokio = { version = "1", features = ["full"] }
url = "2"
urlencoding = "2"
rustyline = { version = "14", features = ["derive"] }
indicatif = { version = "0.17", features = ["improved_unicode"] }
chrono = "0.4"
rustyline-async = "0.4.2"
futures-util = "0.3.30"
[target.'cfg(not(target_env = "msvc"))'.dependencies]
openssl = { version = "0.10", features = ["vendored"] }
[profile.release]
opt-level = 3
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'unwind'
incremental = false
overflow-checks = false