-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (41 loc) · 980 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
[workspace]
members = [".", "macros"]
[package]
name = "medici-shared"
version = "0.1.0"
edition = "2021"
rust-version = "1.83"
[dependencies]
anyhow = "1.0.95"
async-openai = "0.26.0"
aws-sdk-sesv2 = "1.58.0"
blake3 = "1.5.5"
chrono = { version = "0.4.39", default-features = false, features = [
"std",
"serde",
"clock",
] }
medici-macros = { path = "macros" }
regex = "1.11.1"
rust_decimal = "1.36.0"
serde = { version = "1.0.216", features = ["derive"] }
serde_json = "1.0.134"
sqlx = { version = "0.8.2", default-features = false, features = [
"runtime-tokio",
"postgres",
"macros",
"derive",
] }
strum = { version = "0.26.3", features = ["derive"] }
tokio = { version = "1.42.0", features = ["full"] }
tracing = "0.1.41"
uuid = { version = "1.11.0", features = ["std", "v4", "serde"] }
[dev-dependencies]
fake = { version = "3.0.1", features = [
"derive",
"rust_decimal",
"uuid",
"chrono",
] }
proptest = "1.6.0"
rand = "0.8.5"