Skip to content

Commit

Permalink
clearance
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonardTibben committed Sep 20, 2023
1 parent c94f074 commit 4205d23
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Debug unit tests in library 'stellar-rust-sdk'",
"cargo": {
"args": [
"test",
"--no-run",
"--lib",
"--package=stellar-rust-sdk"
],
"filter": {
"name": "stellar-rust-sdk",
"kind": "lib"
}
},
"args": [],
"cwd": "${workspaceFolder}"
}
]
}
2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ url = "2.2.2"
tokio = { version = "1.15.0", features = ["full"] }
xdr-codec = "0.4.4"
xdrgen = "0.4.4"

[build-dependencies]
2 changes: 2 additions & 0 deletions build.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
fn main() {
}

0 comments on commit 4205d23

Please sign in to comment.