-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathCargo.toml
More file actions
35 lines (33 loc) · 1.11 KB
/
Cargo.toml
File metadata and controls
35 lines (33 loc) · 1.11 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
[package]
name = "linkly-ai-cli"
version = "0.3.0"
edition = "2021"
description = "CLI for Linkly AI - search your local documents from the terminal"
license = "Apache-2.0"
repository = "https://github.com/LinklyAI/linkly-ai-cli"
homepage = "https://linkly.ai"
readme = "README.md"
keywords = ["cli", "ai", "search", "mcp", "knowledge"]
categories = ["command-line-utilities"]
exclude = ["artifacts/", "scripts/", ".github/", "latest.json"]
[[bin]]
name = "linkly"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.102"
chrono = { version = "0.4", default-features = false, features = ["clock"] }
clap = { version = "4.5.60", features = ["derive"] }
dirs = "6.0.0"
flate2 = "1.1.9"
owo-colors = "4.3.0"
reqwest = { version = "0.13.2", features = ["json"] }
rmcp = { version = "0.17.0", features = ["client", "server", "macros", "transport-async-rw", "transport-streamable-http-client-reqwest"] }
schemars = "1"
self-replace = "1.5.0"
semver = "1.0.27"
serde = { version = "1.0.228", features = ["derive"] }
serde_json = "1.0.149"
tar = "0.4.44"
tempfile = "3.26.0"
tokio = { version = "1.49.0", features = ["full"] }
zip = "8.1.0"