Skip to content

Commit

Permalink
chore: update dependencies, switch to baid64 v0.2. Release beta 6
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed May 24, 2024
1 parent 6b7b257 commit 22d7ee8
Show file tree
Hide file tree
Showing 7 changed files with 63 additions and 63 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
strategy:
fail-fast: false
matrix:
toolchain: [ nightly, beta, stable, 1.69.0 ]
toolchain: [ nightly, beta, stable, 1.70.0 ]
steps:
- uses: actions/checkout@v2
- name: Install rust ${{ matrix.toolchain }}
Expand Down
94 changes: 49 additions & 45 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 9 additions & 13 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "aluvm"
description = "Functional registry-based RISC virtual machine"
version = "0.11.0-beta.5"
version = "0.11.0-beta.6"
authors = ["Dr Maxim Orlovsky <[email protected]>"]
repository = "https://github.com/aluvm/rust-aluvm"
homepage = "https://aluvm.org"
keywords = ["virtual-machine", "emulator", "functional", "risc", "edge-computing"]
categories = ["no-std", "embedded", "compilers", "cryptography", "emulators"]
rust-version = "1.69.0" # Due to TOML dependency of amplify crate
rust-version = "1.70.0" # Due to strict encoding
edition = "2018"
license = "Apache-2.0"
readme = "README.md"
Expand All @@ -22,17 +22,17 @@ required-features = ["stl"]

[dependencies]
amplify = { version = "4.6.0", default-features = false, features = ["apfloat", "derive", "hex"] }
ascii-armor = { version = "0.6.0", optional = true }
baid64 = "0.1.0"
ascii-armor = { version = "0.7.0", optional = true }
baid64 = "0.2.0"
paste = "1"
strict_encoding = { version = "2.7.0-beta.3", default-features = false, features = ["float", "derive"] }
strict_types = { version = "2.7.0-beta.3", optional = true }
strict_encoding = { version = "2.7.0-beta.4", default-features = false, features = ["float", "derive"] }
strict_types = { version = "2.7.0-beta.4", optional = true }
sha2 = "0.10.8"
blake3 = "1.5.1"
ripemd = "0.1.3"
secp256k1 = { version = "0.28.2", optional = true, features = ["global-context"] }
curve25519-dalek = { version = "3.2", optional = true }
half = "~2.2.0" # Required to maintain MSRV
secp256k1 = { version = "0.29.0", optional = true, features = ["global-context"] }
curve25519-dalek = { version = "3.2.1", optional = true }
half = "2.4.1" # Required to maintain MSRV
serde_crate = { package = "serde", version = "1", optional = true }

[features]
Expand All @@ -55,7 +55,3 @@ wasm-bindgen-test = "0.3"

[package.metadata.docs.rs]
features = ["all"]

[patch.crates-io]
strict_encoding = { git = "https://github.com/strict-types/strict-encoding", branch = "develop" }
strict_types = { git = "https://github.com/strict-types/strict-types", branch = "develop" }
2 changes: 1 addition & 1 deletion MANIFEST.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Type: Library
Kind: Free software
License: Apache-2.0
Language: Rust
Compiler: 1.69
Compiler: 1.70
Author: Maxim Orlovsky
Maintained: UBIDECO Institute, Switzerland
Maintainers:
Expand Down
2 changes: 1 addition & 1 deletion src/stl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ use crate::LIB_NAME_ALUVM;

/// Strict type id for the library providing data types from this crate.
pub const LIB_ID_ALUVM: &str =
"stl:YnA1fyHl-46C2hsC-tZPxn60-w1jLk5Y-rDTjRmy-xo@5xjY#congo-archive-folio";
"stl:YnA1fyHl-46C2hsC-tZPxn60-w1jLk5Y-rDTjRmy-xo!5xjY#congo-archive-folio";

fn _aluvm_stl() -> Result<TypeLib, CompileError> {
LibBuilder::new(libname!(LIB_NAME_ALUVM), tiny_bset! {
Expand Down
2 changes: 1 addition & 1 deletion stl/[email protected]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
-----BEGIN STRICT TYPE LIB-----
Id: stl:YnA1fyHl-46C2hsC-tZPxn60-w1jLk5Y-rDTjRmy-xo@5xjY#congo-archive-folio
Id: stl:YnA1fyHl-46C2hsC-tZPxn60-w1jLk5Y-rDTjRmy-xo!5xjY#congo-archive-folio
Name: AluVM
Dependencies: Std#ralph-blue-lucky
Check-SHA256: 33bd3f759d49fd0e46f3179acda055dcc81082b29db36d949482f9e168b6781c
Expand Down
2 changes: 1 addition & 1 deletion stl/[email protected]
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{-
Id: stl:YnA1fyHl-46C2hsC-tZPxn60-w1jLk5Y-rDTjRmy-xo@5xjY#congo-archive-folio
Id: stl:YnA1fyHl-46C2hsC-tZPxn60-w1jLk5Y-rDTjRmy-xo!5xjY#congo-archive-folio
Name: AluVM
Version: 0.1.0
Description: AluVM data type library
Expand Down

0 comments on commit 22d7ee8

Please sign in to comment.