[package]
edition = "2021"
name = "stellar-interchain-token"
version = "2.0.1"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "InterchainToken contract, responsible for implementing an interchain token that is compatible with SEP-41."
readme = "README.md"
license = "MIT OR Apache-2.0"
[features]
library = []
testutils = ["stellar-axelar-std/testutils"]
[lib]
name = "stellar_interchain_token"
crate-type = [
"cdylib",
"rlib",
]
path = "src/lib.rs"
[dependencies.cfg-if]
version = "1.0"
default-features = false
[dependencies.soroban-token-sdk]
version = "25.3.0"
[dependencies.stellar-axelar-std]
version = "^2.0.1"
features = ["derive"]
[dev-dependencies.goldie]
version = "0.5.0"
default-features = false
[dev-dependencies.paste]
version = "1.0"
default-features = false
[dev-dependencies.stellar-axelar-std]
version = "^2.0.1"
features = [
"derive",
"testutils",
]
[lints.clippy]
cloned_ref_to_slice_refs = "allow"
too_many_arguments = "allow"
[lints.clippy.nursery]
level = "warn"
priority = -1
[lints.rust]