From 4205d2358d58fd8564db83ab71fa813e1116e5e4 Mon Sep 17 00:00:00 2001 From: LeonardTibben Date: Wed, 20 Sep 2023 11:32:47 +0200 Subject: [PATCH] clearance --- .vscode/launch.json | 27 +++++++++++++++++++++++++++ Cargo.toml | 2 ++ build.rs | 2 ++ 3 files changed, 31 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 build.rs diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 0000000..87985c9 --- /dev/null +++ b/.vscode/launch.json @@ -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}" + } + ] +} \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index cb454b4..39e9fc0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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] \ No newline at end of file diff --git a/build.rs b/build.rs new file mode 100644 index 0000000..ea3850b --- /dev/null +++ b/build.rs @@ -0,0 +1,2 @@ +fn main() { +} \ No newline at end of file