-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
zkaluvm: refactoring field order into a registry
- Loading branch information
1 parent
4891df0
commit 4ce41df
Showing
21 changed files
with
673 additions
and
391 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "aluvm" | ||
description = "Functional registry-based RISC virtual machine" | ||
version = "0.12.0-alpha.1" | ||
version = "0.12.0-nightly-zkaluvm.1" | ||
authors = ["Dr Maxim Orlovsky <[email protected]>"] | ||
repository = "https://github.com/aluvm/rust-aluvm" | ||
homepage = "https://aluvm.org" | ||
|
@@ -32,12 +32,9 @@ serde = { version = "1", optional = true } | |
|
||
[features] | ||
default = [] | ||
all = [ | ||
"stl", "log", "armor", | ||
# Instruction set architecture extensions | ||
# "a1024", "array", "str", "float", "sha", "secp256k1", "curve25519", | ||
"serde" | ||
] | ||
# `all` must exclude specific ISA, which may be in a conflict with each other | ||
# The consumer of the library is expected to add required ISA manually | ||
all = ["stl", "log", "armor", "serde"] | ||
|
||
armor = ["dep:ascii-armor"] | ||
stl = ["strict_types/armor"] | ||
|
@@ -46,10 +43,19 @@ alloc = ["amplify/alloc"] | |
serde = ["dep:serde", "amplify/serde", "strict_encoding/serde"] | ||
|
||
# Instruction set architecture extensions | ||
# a1024 = [] | ||
# array = [] | ||
# str = [] | ||
# float = ["amplify/apfloat", "half"] | ||
zk-aluvm = ["GFA"] # Feature ensuring zk-AluVM configuration excluding all zk-incompatible features | ||
A64 = [] | ||
A128 = ["A64"] | ||
# A256 = ["A128"] | ||
# A512 = ["A512"] | ||
# A1024 = ["A1024"] | ||
GFA = [] | ||
STR = [] | ||
# ARRAY = [] | ||
# FL64 = [] | ||
# FL80 = ["FL64", "amplify/apfloat"] | ||
# FLQTR = ["FL80"] | ||
# FLOCT = ["FLOCT"] | ||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
wasm-bindgen = "0.2" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.