Skip to content

Commit e961796

Browse files
committed
feat: add aptos cli
1 parent 34763cd commit e961796

12 files changed

Lines changed: 8737 additions & 2091 deletions

File tree

.cargo/config.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[build]
2+
rustflags = ["--cfg", "tokio_unstable"]

.vscode/tasks.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"version": "2.0.0",
3+
"tasks": [
4+
{
5+
"label": "Build ledgerflow-aptos-cli",
6+
"type": "shell",
7+
"command": "cargo",
8+
"args": [
9+
"build",
10+
"-p",
11+
"ledgerflow-aptos-cli"
12+
],
13+
"group": "build",
14+
"problemMatcher": [
15+
"$rustc"
16+
],
17+
"isBackground": false
18+
}
19+
]
20+
}

0 commit comments

Comments
 (0)