Skip to content

Commit 9fc54c3

Browse files
committed
first commit
0 parents  commit 9fc54c3

File tree

5 files changed

+768
-0
lines changed

5 files changed

+768
-0
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
.DS_Store
2+
example
3+
target
4+
.idea

Cargo.lock

Lines changed: 246 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[package]
2+
name = "sui_starter"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
anyhow = "1.0.32"
8+
clap = { version = "4.0.18", features = ["derive"] }
9+
serde = { version = "1.0" }
10+
serde_json = "1.0"
11+
12+
13+
#sui = { git = "https://github.com/MystenLabs/sui.git", branch = "main" }
14+
#
15+
#[patch.crates-io]
16+
#sqlx = { git="https://github.com/huitseeker/sqlx", branch="update_libsqlite3" }

0 commit comments

Comments
 (0)