Skip to content

Commit

Permalink
project setup
Browse files Browse the repository at this point in the history
  • Loading branch information
Vid201 committed Oct 22, 2022
0 parents commit 02c7219
Show file tree
Hide file tree
Showing 8 changed files with 47 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[env]
RUSTC_BOOTSTRAP = "1"
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/target
16 changes: 16 additions & 0 deletions Cargo.lock

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

14 changes: 14 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
[package]
name = "aa-bundler"
version = "0.1.0"
authors = ["Vid Kersic <[email protected]>"]
edition = "2021"
description = "AA - Bundler implementation"
default-run = "bundler"

[dependencies]
anyhow = "1"

[[bin]]
path = "bin/bundler.rs"
name = "bundler"
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# <h1 align="center"> AA - Bundler </h1>

Rust implementation for Bundler - Account Abstraction.

## Running

`cargo run`
6 changes: 6 additions & 0 deletions bin/bundler.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
use anyhow::Result;

fn main() -> Result<()> {
println!("Hello world!");
Ok(())
}
1 change: 1 addition & 0 deletions rust-toolchain
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
stable
Empty file added src/lib.rs
Empty file.

0 comments on commit 02c7219

Please sign in to comment.