mirror of
https://github.com/juspay/hyperswitch.git
synced 2025-10-29 00:49:42 +08:00
Co-authored-by: hyperswitch-bot[bot] <148525504+hyperswitch-bot[bot]@users.noreply.github.com>
32 lines
809 B
TOML
32 lines
809 B
TOML
[package]
|
|
name = "common_enums"
|
|
description = "Enums shared across the request/response types and database types"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
readme = "README.md"
|
|
license.workspace = true
|
|
|
|
[features]
|
|
dummy_connector = []
|
|
openapi = []
|
|
payouts = []
|
|
|
|
[dependencies]
|
|
diesel = { version = "2.2.3", features = ["postgres"] }
|
|
serde = { version = "1.0.197", features = ["derive"] }
|
|
serde_json = "1.0.115"
|
|
strum = { version = "0.26", features = ["derive"] }
|
|
thiserror = "1.0.58"
|
|
utoipa = { version = "4.2.0", features = ["preserve_order", "preserve_path_order"] }
|
|
|
|
# First party crates
|
|
router_derive = { version = "0.1.0", path = "../router_derive" }
|
|
masking = { version = "0.1.0", path = "../masking" }
|
|
|
|
[dev-dependencies]
|
|
serde_json = "1.0.115"
|
|
|
|
[lints]
|
|
workspace = true
|