Skip to content

Commit

Permalink
move macro assembly to aluvm repo
Browse files Browse the repository at this point in the history
  • Loading branch information
dr-orlovsky committed Dec 17, 2023
1 parent 94b9d93 commit cbc4d29
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 1,371 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ name = "aluasm"
name = "alink"

[dependencies]
amplify = "4.0.0"
aluvm = { version = "0.10.2", features = ["std", "secp256k1"] }
baid58 = "0.3.2"
paste = "1.0.12"
amplify = "4.5.0"
aluvm = { version = "0.11.0-beta.1", features = ["std", "secp256k1"] }
baid58 = "0.4.4"
paste = "1.0.14"
pest = "2.1"
pest_derive = "2.1"
clap = { version = "3.1.6", features = ["derive"] }

[patch.crates-io]
aluvm = { git = "https://github.com/aluvm/rust-aluvm" }
aluvm = { git = "https://github.com/aluvm/rust-aluvm", branch = "v0.11" }
2 changes: 1 addition & 1 deletion examples/asm.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
// You should have received a copy of the MIT License along with this software.
// If not, see <https://opensource.org/licenses/MIT>.

use aluasm::aluasm;
use aluvm::aluasm;
use aluvm::isa::Instr;
use aluvm::library::Lib;
use aluvm::{Prog, Vm};
Expand Down
2 changes: 0 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ extern crate pest_derive;
#[macro_use]
extern crate amplify;

#[macro_use]
mod macros;
mod model;
mod pipelines;

Expand Down
Loading

0 comments on commit cbc4d29

Please sign in to comment.