aluvm 0.3.0

AluVM rust implementation
Documentation
[package]
name = "aluvm"
description = "AluVM rust implementation"
version = "0.3.0"
authors = ["Dr Maxim Orlovsky <orlovsky@pandoracore.com>"]
edition = "2018"
license = "MIT"
repository = "https://github.com/internet2-org/rust-aluvm"
homepage = "https://lnp-bp.org"
keywords = ["virtual-machine", "emulator", "functional", "risc", "edge-computing"]
categories = ["no-std", "embedded", "compilers", "cryptography", "emulators"]
readme = "README.md"
exclude = [".github", "test"]

[lib]
name = "aluvm"

[dependencies]
amplify = { version = "3.7.1", default-features = false, features = ["derive"] }
paste = "1"
bitcoin_hashes = { version = "0.9.6", default-features = false } # this is most well-maintained generic hash implementation library
bech32 = { version = "0.8.1", default-features = false }
secp256k1 = { version = "0.20.2", optional = true, features = ["global-context"] }
curve25519-dalek = { version = "3.1", optional = true }
rustc_apfloat = "0.1.3"
half = "1.7.1"

[features]
default = []
all = ["std", "secp256k1", "curve25519"]
std = ["amplify/std", "bitcoin_hashes/std", "secp256k1/std", "curve25519-dalek/std", "curve25519-dalek/alloc", "bech32/std"]
curve25519 = ["curve25519-dalek"]