Skip to content

Commit

Permalink
fix(axelar-std): feature gate exported interfaces (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
milapsheth authored Jan 23, 2025
1 parent 55bafad commit f8e469a
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion contracts/stellar-axelar-gas-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-axelar-gas-service"
version = "0.2.0"
edition = { workspace = true }
description = "Contract related to Axelar Gas Service."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion contracts/stellar-axelar-gateway/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-axelar-gateway"
version = "0.2.0"
edition = { workspace = true }
description = "Contract related to Axelar Gateway."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion contracts/stellar-axelar-operators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-axelar-operators"
version = "0.2.0"
edition = { workspace = true }
description = "Contract related to Axelar Operators."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion contracts/stellar-interchain-token-service/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-interchain-token-service"
version = "0.2.0"
edition = { workspace = true }
description = "Contract related to Interchain Token Service."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion contracts/stellar-interchain-token/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-interchain-token"
version = "0.2.0"
edition = { workspace = true }
description = "Contract related to Interchain Token."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion contracts/stellar-upgrader/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-upgrader"
version = "0.2.0"
edition = { workspace = true }
description = "Contract related to Upgrader."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand Down
2 changes: 1 addition & 1 deletion packages/stellar-axelar-std-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-axelar-std-derive"
version = "0.2.0"
edition = { workspace = true }
description = "Proc macros for Axelar contracts."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand Down
3 changes: 2 additions & 1 deletion packages/stellar-axelar-std/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "stellar-axelar-std"
version = "0.2.0"
edition = { workspace = true }
description = "Contract related to Axelar Std."
license = "MIT"
license = { workspace = true }
publish = true

[lib]
Expand All @@ -17,6 +17,7 @@ stellar-axelar-std-derive = { workspace = true, optional = true }

[dev-dependencies]
goldie = { workspace = true }
hex = { workspace = true }
paste = { workspace = true }
soroban-sdk = { workspace = true, features = ["testutils"] }
stellar-axelar-std-derive = { workspace = true, features = ["testutils"] }
Expand Down
1 change: 1 addition & 0 deletions packages/stellar-axelar-std/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ pub mod ttl;

pub mod events;

#[cfg(feature = "derive")]
pub mod interfaces;

pub mod address;
Expand Down

0 comments on commit f8e469a

Please sign in to comment.