-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
45 lines (44 loc) · 1.47 KB
/
Copy pathCargo.toml
File metadata and controls
45 lines (44 loc) · 1.47 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
[package]
name = "bedrust"
description = "A command line tool to invoke and work with Large Language models on AWS, using Amazon Bedrock"
version = "0.8.8"
edition = "2021"
authors = ["Darko Mesaros <d@rko.rs>", "Stephen Barr <stephen.barr@devfactory.com>", "Russel Cohen <rcoh@rcoh.me>"]
license = "MIT OR Apache-2.0"
keywords = ["aws", "generative-ai", "bedrock", "chatbot"]
categories = ["command-line-utilities"]
readme = "README.md"
homepage = "https://rup12.net"
repository = "https://github.com/darko-mesaros/bedrust"
exclude = [
"img/*"
]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.79"
aws-config = { version = "1.6.0", features = ["behavior-version-latest"]}
aws-sdk-bedrock = "1.78.0"
aws-sdk-bedrockruntime = "1.77.0"
base64 = "0.22.0"
aws-types = "1.3.6"
chrono = "0.4.38"
clap = { version = "4.5.0", features = ["derive"] }
colored = "3.0.0"
convert_case = "0.8.0"
dialoguer = { version = "0.11.0", default-features = false, features = ["fuzzy-select", "completion"] }
dirs = "6.0.0"
figlet-rs = "0.1.5"
handlebars = "6.2.0"
html-escape = "0.2.13"
ignore = "0.4.22"
image = "0.25.0"
indicatif = "0.17.8"
lazy_static = "1.5.0"
quick-xml = { version = "0.37.2", features = ["serde", "serde-types", "serialize"] }
rand = "0.9.0"
regex = "1.11.1"
ron = "0.9.0"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.116"
termcolor = "1.4.1"
tokio = { version = "1.37.0", features = ["full"] }