Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
rauljordan committed Jul 4, 2024
1 parent 297264a commit 63b4e6d
Show file tree
Hide file tree
Showing 3 changed files with 118 additions and 39 deletions.
146 changes: 109 additions & 37 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
[package]
name = "stylus-hello-world-minimal"
version = "0.1.0"
version = "0.1.1"
edition = "2021"

[dependencies]
stylus-sdk = "0.4.2"
stylus-sdk = "0.5.1"
mini-alloc = "0.4.2"

[features]
Expand Down
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ extern crate alloc;
#[global_allocator]
static ALLOC: mini_alloc::MiniAlloc = mini_alloc::MiniAlloc::INIT;

use core::panic::PanicInfo;

#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
loop {}
}

use alloc::vec::Vec;

use stylus_sdk::stylus_proc::entrypoint;
Expand Down

0 comments on commit 63b4e6d

Please sign in to comment.