[package] name = "snarkvm-console-account" version = "1.1.0" authors = [ "The Aleo Team " ] description = "Account operations for a decentralized virtual machine" homepage = "https://aleo.org" repository = "https://github.com/AleoNet/snarkVM" license = "Apache-2.0" edition = "2021" [[bench]] name = "account" path = "benches/account.rs" harness = false [dependencies.snarkvm-console-network] path = "../network" version = "=1.1.0" [dependencies.snarkvm-console-types] path = "../types" version = "=1.1.0" default-features = false features = [ "address", "boolean", "field", "group", "scalar" ] [dependencies.bs58] version = "0.5" [dependencies.zeroize] version = "1" features = [ "derive" ] [dev-dependencies.bincode] version = "1.3" [dev-dependencies.criterion] version = "0.5.1" [dev-dependencies.serde_json] version = "1.0" features = [ "preserve_order" ] [features] default = [ "compute_key", "graph_key", "private_key", "signature", "view_key" ] compute_key = [ "private_key" ] graph_key = [ "private_key" ] private_key = [ "compute_key" ] signature = [ "compute_key" ] view_key = [ ] test = [ ]