-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
7351da6
commit 5ef43c7
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,10 @@ script = [ | |
"sed -i.bak \"s/StatusEnum:/StatusEnum:\\n description: status of this requisition/\" /tmp/gocardless-bankaccountdata-schema.yaml", | ||
"npx openapi-generator-cli generate -i /tmp/gocardless-bankaccountdata-schema.yaml -o packages/gocardless-bankaccountdata -g rust --package-name gocardless-bankaccountdata --additional-properties=bestFitInt", | ||
"sed -i.bak \"s/OpenAPI Generator team and contributors/Nixy <[email protected]>/\" packages/gocardless-bankaccountdata/Cargo.toml", | ||
"sed -i.bak \"s/Securely access your user's bank account information for better lending, accounting, verification and financial management./Rust OpenAPI client for GoCardless Bank Account Data./\" packages/gocardless-bankaccountdata/Cargo.toml", | ||
"sed -i.bak \"s/Securely access your user's bank account information for better lending, accounting, verification and financial management./Rust OpenAPI client for GoCardless Bank Account Data.\"/ packages/gocardless-bankaccountdata/Cargo.toml", | ||
"sed -i.bak \"s/edition = \\\"2021\\\"/edition = \\\"2021\\\"\\nrepository.workspace = true/\" packages/gocardless-bankaccountdata/Cargo.toml", | ||
"rm -f packages/gocardless-bankaccountdata/{.gitignore,.travis.yml,Cargo.toml.bak,git_push.sh}", | ||
"npx prettier --write .", | ||
"cargo fmt", | ||
] | ||
workspace = false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,7 @@ authors = ["Nixy <[email protected]>"] | |
description = "Rust OpenAPI client for GoCardless Bank Account Data." | ||
license = "MIT" | ||
edition = "2021" | ||
repository.workspace = true | ||
|
||
[dependencies] | ||
serde = { version = "^1.0", features = ["derive"] } | ||
|