[dependencies.async-trait]
version = "0.1"
[dependencies.derive_more]
features = ["deref", "deref_mut", "from", "into"]
version = "1"
[dependencies.futures]
version = "0.3"
[dependencies.indexmap]
version = "2"
[dependencies.log]
version = "0.4"
[dependencies.nacl]
version = "0.5"
[dependencies.serde]
features = ["derive"]
version = "1"
[dependencies.solana-program]
version = "=1.18"
[dependencies.solana-sdk]
version = "=1.18"
[dependencies.typed-builder]
version = "0.20"
[dependencies.wallet_standard]
features = ["solana"]
version = "0.4.0"
[dependencies.wasm_client_solana]
version = "0.6.0"
[dev-dependencies.anyhow]
version = "1"
[dev-dependencies.assert2]
version = "0.3"
[dev-dependencies.test-log]
features = ["trace"]
version = "0.2"
[dev-dependencies.tokio]
features = ["test-util"]
version = "1"
[features]
default = []
js = ["wasm_client_solana/js"]
ssr = ["wasm_client_solana/ssr"]
[lib]
name = "wallet_standard_wallets"
path = "src/lib.rs"
[lints.clippy]
blocks_in_conditions = "allow"
cargo_common_metadata = "allow"
cast_possible_truncation = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
expl_impl_clone_on_copy = "allow"
items_after_statements = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
no_effect_underscore_binding = "allow"
tabs-in-doc-comments = "allow"
too_many_lines = "allow"
wildcard_dependencies = "deny"
wildcard_imports = "allow"
[lints.clippy.complexity]
level = "warn"
priority = -1
[lints.clippy.correctness]
level = "deny"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.clippy.perf]
level = "warn"
priority = -1
[lints.clippy.style]
level = "warn"
priority = -1
[lints.clippy.suspicious]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "deny"
unstable_features = "deny"
unused_extern_crates = "warn"
unused_import_braces = "warn"
unused_lifetimes = "warn"
unused_macro_rules = "warn"
unused_qualifications = "warn"
variant_size_differences = "warn"
[lints.rust.rust_2021_compatibility]
level = "warn"
priority = -1
[lints.rust.rust_2024_compatibility]
level = "warn"
priority = -1
[package]
authors = ["Ifiok Jr. <ifiokotung@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["wasm"]
description = "A collection of solana wallet implementations primarily used for testing."
edition = "2021"
homepage = "https://github.com/ifiokjr/wasm_solana"
license = "Unlicense"
name = "wallet_standard_wallets"
readme = "readme.md"
repository = "https://github.com/ifiokjr/wasm_solana"
rust-version = "1.76.0"
version = "0.1.13"
[[test]]
name = "memory"
path = "tests/memory.rs"