Skip to content

Commit

Permalink
ci: configure cargo workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
DeepakBomjan committed Jun 18, 2024
1 parent 3e5b566 commit ebf8ad3
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-test-soroban-contracts.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Test Stellar contracts
name: Build and Test Balanced Soroban contracts
on:
push:
branches:
Expand Down
26 changes: 26 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[workspace]
members = [
"asset_manager",
"balanced_dollar",
"xcall",
"xcall_manager"
]

[workspace.package]
authors = ["Balanced<foo@icon.foundation>"]
repository = "https://github.com/balancednetwork/balanced-soroban-contracts.git"
version="0.1.0"

[workspace.dependencies]


[profile.release]
opt-level = 'z'
debug = false
rpath = false
lto = true
debug-assertions = false
codegen-units = 1
panic = 'abort'
incremental = false
overflow-checks = true

0 comments on commit ebf8ad3

Please sign in to comment.