-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
29 lines (27 loc) · 890 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
26
27
28
29
[package]
name = "artizans_webserver"
version = "0.1.0"
edition = "2021"
[dependencies]
actix-web = "4.9.0"
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
env_logger = "0.11.5"
dotenv = "0.15.0"
lazy_static = "1.5.0"
sha256 = "1.5.0"
chrono = "0.4.38"
jsonwebtoken = "9.3.0"
redis = { version = "0.26.1", features = ["tokio-comp"] }
anyhow = "1.0.86"
tokio = { version = "1.40.0", features = ["full"] }
aws-config = { version= "1.5.5", features = ["behavior-version-latest"] }
aws-sdk-dynamodb = "1.43.0"
aws-sdk-bedrockruntime = { version = "1.47.0", features = ["behavior-version-latest"] }
[dependencies.uuid]
version = "1.10.0"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
]