[package]
name = "soroban-sdk"
description = "Soroban SDK."
homepage = "https://github.com/stellar/rs-soroban-sdk"
repository = "https://github.com/stellar/rs-soroban-sdk"
authors = ["Stellar Development Foundation <info@stellar.org>"]
readme = "../README.md"
license = "Apache-2.0"
version = "0.0.2"
edition = "2021"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
soroban-sdk-macros = { version = "0.0.2" }
ed25519-dalek = { version = "1.0.1", optional = true }
[target.'cfg(target_family="wasm")'.dependencies]
soroban-env-guest = { version = "0.0.2" }
[target.'cfg(not(target_family="wasm"))'.dependencies]
soroban-env-host = { version = "0.0.2" }
[dev-dependencies]
stellar-xdr = { version = "0.0.1", features = ["next", "std"] }
trybuild = "1.0.63"
hex = "0.4.3"
[features]
testutils = ["soroban-env-host/testutils", "dep:ed25519-dalek"]
docs = []
[package.metadata.docs.rs]
all-features = true