From ca62b9d8d8b5d6c8697c90cb9854e4f1412dbaba Mon Sep 17 00:00:00 2001 From: Ishaan Subramanya Date: Thu, 9 May 2024 11:17:09 +0530 Subject: [PATCH] stop tracking vscode and add semver as a dependency --- .gitignore | 1 + .vscode/settings.json | 6 ------ Cargo.toml | 1 - paxy-plugin/Cargo.toml | 2 +- 4 files changed, 2 insertions(+), 8 deletions(-) delete mode 100644 .vscode/settings.json diff --git a/.gitignore b/.gitignore index 6100424..fe8042d 100644 --- a/.gitignore +++ b/.gitignore @@ -22,6 +22,7 @@ Cargo.lock !.vscode/*.code-snippets .history/ *.vsix +.vscode/ # Packaging /packaging/**/pkg diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index d61fbe1..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "rust-analyzer.showUnlinkedFileNotification": false, - "rust-analyzer.cargo.features": [ - "extism_support" - ] -} \ No newline at end of file diff --git a/Cargo.toml b/Cargo.toml index c614c9f..823b0ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -54,7 +54,6 @@ snafu = "0.8" # Data lazy_static = "1.4" -semver = {git = "https://github.com/FerrisWasTaken/semver.git", features = ["extism_support"]} serde = { version = "1.0.200", features = ["derive"] } serde-aux = "4.5" serde_yaml = "0.9" diff --git a/paxy-plugin/Cargo.toml b/paxy-plugin/Cargo.toml index 66c7056..3b075c7 100644 --- a/paxy-plugin/Cargo.toml +++ b/paxy-plugin/Cargo.toml @@ -18,7 +18,7 @@ default-target = "wasm32-wasi" [dependencies] extism-pdk = "1.1.0" toml = "0.8.12" -semver = { workspace = true, features = ["extism_support"]} +semver = {git = "https://github.com/FerrisWasTaken/semver.git", features = ["extism_support"]} reqwest = { version = "0.11", features = ["blocking", "json"] } [lib]