project init

This commit is contained in:
cebgcontract 2022-09-23 13:40:55 +08:00
commit 0381fd1d76
4 changed files with 16 additions and 0 deletions

4
.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
/target
.DS_Store
/tmp
.idea

8
Cargo.toml Normal file
View File

@ -0,0 +1,8 @@
[package]
name = "rustwallet"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]

1
README.md Normal file
View File

@ -0,0 +1 @@
# Rust版的钱包

3
src/main.rs Normal file
View File

@ -0,0 +1,3 @@
fn main() {
println!("Hello, world!");
}