Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
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
8 changes: 8 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
[workspace]
members = ["apexchainx_calculator"]
resolver = "2"

[workspace.package]
edition = "2021"
license = "MIT"
repository = "https://github.com/ApexChainx/ApexChainx-Contracts"

[workspace.dependencies]
soroban-sdk = "21.1.0"
10 changes: 5 additions & 5 deletions apexchainx_calculator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "apexchainx_calculator"
version = "0.1.0"
edition = "2021"
edition.workspace = true
description = "Soroban SLA calculator contract for the ApexChainx system"
license = "MIT"
repository = "https://github.com/ApexChainx/ApexChainx-Contracts"
license.workspace = true
repository.workspace = true
publish = false

[lib]
Expand All @@ -14,7 +14,7 @@ crate-type = ["cdylib"]
default = []

[dependencies]
soroban-sdk = { version = "21.1.0", features = ["alloc"] }
soroban-sdk = { workspace = true, features = ["alloc"] }

[dev-dependencies]
soroban-sdk = { version = "21.1.0", features = ["testutils", "alloc"] }
soroban-sdk = { workspace = true, features = ["testutils", "alloc"] }
Loading