-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (22 loc) · 776 Bytes
/
Copy pathCargo.toml
File metadata and controls
27 lines (22 loc) · 776 Bytes
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
[package]
name = "ruva"
version = "0.20.0"
edition = "2021"
license = "MIT"
description = "Rust Library For Event Driven Message Handling"
repository = "https://github.com/BeringLab/ruva"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
ruva-core = { version = "0.20.0", path = "./ruva-core" }
ruva-macro = { version = "0.19.4", path = "./ruva-macro" }
static_assertions = "1.1.0"
regex = "1.11.1"
utoipa = { version = "5.2.0", optional = true }
[dev-dependencies]
serde = { version = "1.0.219", features = ["derive"] }
trybuild = "1.0.104"
[features]
backtrace = ["ruva-core/backtrace"]
tracing = ["ruva-core/tracing"]
sqlx-postgres = ["ruva-core/sqlx-postgres"]
utoipa = ["dep:utoipa", "ruva-core/utoipa"]