[package] name = "starknet-contract" version = "0.11.0" authors = ["Jonathan LEI "] license = "MIT OR Apache-2.0" edition = "2021" readme = "README.md" repository = "https://github.com/xJonathanLEI/starknet-rs" homepage = "https://starknet.rs/" description = """ Types and utilities for Starknet smart contract deployment and interaction """ keywords = ["ethereum", "starknet", "web3"] exclude = ["test-data/**"] [dependencies] starknet-core = { version = "0.12.0", path = "../starknet-core" } starknet-providers = { version = "0.12.0", path = "../starknet-providers" } starknet-accounts = { version = "0.11.0", path = "../starknet-accounts" } serde = { version = "1.0.160", features = ["derive"] } serde_json = "1.0.96" serde_with = "3.9.0" thiserror = "1.0.40" [dev-dependencies] rand = { version = "0.8.5", features=["std_rng"] } starknet-signers = { version = "0.10.0", path = "../starknet-signers" } tokio = { version = "1.27.0", features = ["full"] } url = "2.3.1" [lints] workspace = true