Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(euclid_wasm): include payouts feature in default features #3392

Merged
merged 27 commits into from
Jan 25, 2024
Merged
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
7c29ffc
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Apr 6, 2023
7bd37eb
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Apr 9, 2023
2cb260f
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Apr 10, 2023
714017e
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Apr 19, 2023
2717631
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Apr 26, 2023
878d9e9
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 May 5, 2023
c683e3c
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 May 21, 2023
e6171b7
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Jun 14, 2023
9f905f8
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Aug 23, 2023
2c48dda
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Aug 24, 2023
5450287
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Aug 28, 2023
ff78e0e
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Aug 28, 2023
bc9e207
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Oct 18, 2023
ff515dc
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Nov 14, 2023
b24f6cd
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Nov 29, 2023
0878c7f
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Dec 15, 2023
795a7d4
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Dec 29, 2023
ce16af3
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Jan 1, 2024
6ef1cdd
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Jan 8, 2024
dcd8a84
Merge branch 'main' of github.com:juspay/hyperswitch
JeevaRamu0104 Jan 18, 2024
37834a2
enable payouts
JeevaRamu0104 Jan 18, 2024
75f7a4b
Merge branch 'main' into enable-payouts-default
JeevaRamu0104 Jan 19, 2024
689cc15
Merge branch 'main' into enable-payouts-default
JeevaRamu0104 Jan 19, 2024
3e442dc
Merge branch 'main' into enable-payouts-default
JeevaRamu0104 Jan 19, 2024
04c6ba7
Merge branch 'main' into enable-payouts-default
JeevaRamu0104 Jan 23, 2024
faabd42
Merge branch 'main' into enable-payouts-default
JeevaRamu0104 Jan 23, 2024
3440775
Merge branch 'main' into enable-payouts-default
JeevaRamu0104 Jan 25, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion crates/euclid_wasm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,15 @@ rust-version.workspace = true
crate-type = ["cdylib"]

[features]
default = ["connector_choice_bcompat", "connector_choice_mca_id"]
default = ["connector_choice_bcompat","payouts", "connector_choice_mca_id"]
release = ["connector_choice_bcompat", "connector_choice_mca_id"]
connector_choice_bcompat = ["api_models/connector_choice_bcompat"]
connector_choice_mca_id = ["api_models/connector_choice_mca_id", "euclid/connector_choice_mca_id", "kgraph_utils/connector_choice_mca_id"]
dummy_connector = ["kgraph_utils/dummy_connector", "connector_configs/dummy_connector"]
production = ["connector_configs/production"]
development = ["connector_configs/development"]
sandbox = ["connector_configs/sandbox"]
payouts = []

[dependencies]
api_models = { version = "0.1.0", path = "../api_models", package = "api_models" }
Expand Down
Loading