-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathCargo.toml
More file actions
59 lines (54 loc) · 1.87 KB
/
Copy pathCargo.toml
File metadata and controls
59 lines (54 loc) · 1.87 KB
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "agent-search"
version = "0.9.0"
edition = "2021"
description = "Unified multi-provider search CLI for AI agents — 13 providers, 13 modes, email verification, one binary"
license = "MIT"
repository = "https://github.com/paperfoot/search-cli"
homepage = "https://github.com/paperfoot/search-cli"
documentation = "https://github.com/paperfoot/search-cli#readme"
keywords = ["search", "cli", "ai-agent", "meta-search", "web-search"]
categories = ["command-line-utilities", "web-programming"]
readme = "README.md"
[[bin]]
name = "search"
path = "src/main.rs"
[features]
# The stealth provider needs wreq (BoringSSL), which doesn't link on Linux —
# build with --no-default-features there; the extract chain starts at jina.
default = ["stealth"]
stealth = ["dep:wreq", "dep:wreq-util"]
[dependencies]
clap = { version = "4", features = ["derive", "env"] }
tokio = { version = "1", features = ["rt-multi-thread", "macros", "time", "net", "io-util"] }
reqwest = { version = "0.12", default-features = false, features = ["json", "rustls-tls"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
figment = { version = "0.10", features = ["toml", "env"] }
comfy-table = "7"
thiserror = "2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
directories = "5"
async-trait = "0.1"
owo-colors = "4"
indicatif = "0.17"
self_update = { version = "0.43", features = ["rustls", "archive-tar", "compression-flate2"] }
backon = "1"
url = "2.5.8"
mimalloc = "0.1.48"
simd-json = "0.17.0"
wreq = { version = "=6.0.0-rc.28", features = ["json", "cookies"], optional = true }
wreq-util = { version = "=3.0.0-rc.11", optional = true }
tl = "0.7"
hickory-resolver = { version = "0.26", features = ["tokio"] }
readability = "0.3"
[dev-dependencies]
assert_cmd = "2"
predicates = "3"
[profile.release]
lto = true
codegen-units = 1
strip = true
opt-level = 3