-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 1.4 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
[package]
name = "keeki"
description = "Keeki (as in Cake) is a AI CLI tool to help developers deliver faster by using RAG techniques. "
version = "0.1.0"
edition = "2021"
authors = ["Lucas Morais Gurgel <lucas.morais@lsconsult.tech>"]
license = "MIT"
readme = "README.md"
homepage = "/~https://github.com/lmorais-dev/keeki"
repository = "/~https://github.com/lmorais-dev/keeki"
[dependencies]
tokio = { version = "1.39.2", features = ["full"] }
bytes = { version = "1.7.1", features = ["serde"] }
clap = { version = "4.5.14", features = ["derive", "unicode"] }
inquire = { version = "0.7.5", features = ["chrono"] }
config = { version = "0.14.0", features = ["indexmap", "preserve_order"] }
glob-match = { version = "0.2.1" }
prettytable-rs = { version = "0.10.0" }
reqwest = { version = "0.12.5", features = ["json", "stream"] }
surrealdb = { version = "1.5.4", features = ["kv-speedb"] }
surreal-id = { version = "1.0.0" }
serde = { version = "1.0.205", features = ["derive"] }
serde_json = { version = "1.0.122", features = ["preserve_order", "float_roundtrip", "indexmap"] }
toml = { version = "0.8.19", features = ["indexmap", "preserve_order"] }
hex = { version = "0.4.3", features = ["serde"] }
gxhash = { version = "3.4.1" }
color-eyre = { version = "0.6.3" }
thiserror = { version = "1.0.63" }
async-trait = { version = "0.1.81" }
num-traits = { version = "0.2.19" }
log = { version = "0.4.22", features = ["serde"] }