[package] name = "bytecode-interpreter-crypto" version = "0.3.2" description = "Bytecode interpreter crypto" authors = ["Diem Association "] edition = "2021" license = "Apache-2.0" [dependencies] # external dependencies anyhow = "1.0.52" curve25519-dalek = { version = "0.1.0", package = "curve25519-dalek-fiat", default-features = false, features = [ "std" ] } ed25519-dalek = { version = "0.1.0", package = "ed25519-dalek-fiat", default-features = false, features = [ "std", "serde" ] } sha2 = "0.9.3" sha3 = "0.9.1" [features] default = ["fiat"] fiat = ["curve25519-dalek/fiat_u64_backend", "ed25519-dalek/fiat_u64_backend"] u64 = ["curve25519-dalek/u64_backend", "ed25519-dalek/u64_backend"] u32 = ["curve25519-dalek/u32_backend", "ed25519-dalek/u32_backend"]