-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
25 lines (23 loc) · 997 Bytes
/
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
[package]
name = "rusty-ai"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
# -- Async
tokio = { version = "1.35.1", features = ["full"] }
# -- AI
async-openai = "0.18.0"
# -- Macros for traits
derive_more = { version = "0.99.17", features = ["from", "display", "deref"] }
# -- Cli
console = "0.15.0" # A terminal and console abstraction for Rust
dialoguer = "0.11.0" # command line prompting library
textwrap = "0.16.0" # library for word wrapping, indenting, and dedenting strings
# -- De/Serialize
serde = { version = "1.0.0", features = ["derive"] }
serde_json = "1.0.0" # JSON serialization file format
toml = "0.8.0" # A native Rust encoder and decoder of TOML-formatted files and streams
# -- Files
globset = "0.4.0" # Cross platform single glob and glob set matching
walkdir = "2.0.0" # Recursively walk a directory.