[package] name = "aptos-framework" version = "0.2.7" edition = "2021" authors = ["Aptos Labs "] description = "Aptos stdlib" repository = "https://github.com/aptos-labs/aptos-core" homepage = "https://aptoslabs.com" license = "Apache-2.0" [dependencies] anyhow = "1.0.57" bcs = "0.1.3" better_any = "0.1.1" clap = "3.1.8" curve25519-dalek = { version = "3", default-features = false } include_dir = "0.7.2" libsecp256k1 = "0.7.0" log = "0.4.17" once_cell = "1.10.0" rayon = "1.5.2" serde = { version = "1.0.137", default-features = false } serde_bytes = "0.11.6" serde_json = "1.0.81" sha2 = "0.9.3" siphasher = "0.3.10" smallvec = "1.8.0" structopt = "0.3.21" tempfile = "3.3.0" aptos-crypto = { version = "0.2.1", path = "../../crates/aptos-crypto" } aptos-sdk-builder = { version = "0.2.1", path = "../aptos-sdk-builder" } aptos-types = { version = "0.2.1", path = "../../types" } move-deps = { version = "0.2.1", path = "../move-deps", features = [ "address32" ] } [dev-dependencies] # aptos-gas = { path = "../../aptos-move/aptos-gas" } # aptos-vm = { path = "../../aptos-move/aptos-vm", features = ["aggregator-extension"] } # move-deps = { path = "../move-deps", features = ["table-extension"] } [features] default = [] fuzzing = ["aptos-types/fuzzing"] [lib] name = "framework"