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>
46 lines
1.5 KiB
TOML
46 lines
1.5 KiB
TOML
[package]
|
|
name = "api_models"
|
|
description = "Request/response models for the `router` crate"
|
|
version = "0.1.0"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
readme = "README.md"
|
|
license.workspace = true
|
|
|
|
[features]
|
|
default = ["payouts", "frm"]
|
|
business_profile_routing = []
|
|
connector_choice_bcompat = []
|
|
errors = ["dep:actix-web", "dep:reqwest"]
|
|
backwards_compatibility = ["connector_choice_bcompat"]
|
|
connector_choice_mca_id = ["euclid/connector_choice_mca_id"]
|
|
dummy_connector = ["euclid/dummy_connector", "common_enums/dummy_connector"]
|
|
detailed_errors = []
|
|
payouts = []
|
|
frm = []
|
|
olap = []
|
|
openapi = ["common_enums/openapi"]
|
|
recon = []
|
|
|
|
[dependencies]
|
|
actix-web = { version = "4.3.1", optional = true }
|
|
error-stack = "0.3.1"
|
|
mime = "0.3.17"
|
|
reqwest = { version = "0.11.18", optional = true }
|
|
serde = { version = "1.0.193", features = ["derive"] }
|
|
serde_json = "1.0.108"
|
|
strum = { version = "0.25", features = ["derive"] }
|
|
time = { version = "0.3.21", features = ["serde", "serde-well-known", "std"] }
|
|
url = { version = "2.4.0", features = ["serde"] }
|
|
utoipa = { version = "3.3.0", features = ["preserve_order"] }
|
|
frunk = "0.4.1"
|
|
frunk_core = "0.4.1"
|
|
|
|
# First party crates
|
|
cards = { version = "0.1.0", path = "../cards" }
|
|
common_enums = { path = "../common_enums" }
|
|
common_utils = { version = "0.1.0", path = "../common_utils" }
|
|
euclid = { version = "0.1.0", path = "../euclid" }
|
|
masking = { version = "0.1.0", path = "../masking", default-features = false, features = ["alloc", "serde"] }
|
|
router_derive = { version = "0.1.0", path = "../router_derive" }
|