-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathCargo.toml
More file actions
38 lines (35 loc) · 1.15 KB
/
Cargo.toml
File metadata and controls
38 lines (35 loc) · 1.15 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
[package]
name = "eventually-postgres"
description = "PostgreSQL-specific trait implementations and utilities for the eventually crate"
version = "0.5.0"
edition = "2021"
authors = ["Danilo Cianfrone <danilocianfr@gmail.com>"]
license = "MIT"
readme = "../README.md"
repository = "https://github.com/get-eventually/eventually-rs"
categories = ["web-programming", "asynchronous"]
keywords = ["postgres", "postgresql", "database", "ddd", "event-sourcing"]
[dependencies]
anyhow = "1.0.97"
async-trait = "0.1.77"
chrono = "0.4.40"
eventually = { path = "../eventually", version = "0.5.0", features = [
"serde-json",
] }
futures = "0.3.31"
regex = "1.11.1"
sqlx = { version = "0.8.3", features = [
"runtime-tokio-rustls",
"postgres",
"migrate",
] }
thiserror = "2.0.12"
[dev-dependencies]
tokio = { version = "1.44.1", features = ["macros", "rt"] }
eventually = { path = "../eventually", version = "0.5.0", features = [
"serde-json",
] }
eventually-macros = { path = "../eventually-macros", version = "0.1.0" }
serde = { version = "1.0.219", features = ["derive"] }
rand = "0.9.0"
testcontainers-modules = { version = "0.11.6", features = ["postgres"] }