From b867964d65ca9bd3b9216e1d6f07f89a5a1a48fe Mon Sep 17 00:00:00 2001 From: PARK BYUNG JUN Date: Fri, 5 Aug 2022 07:30:21 +0000 Subject: [PATCH] configuration of devcontainer is changed --- .devcontainer/devcontainer.json | 4 ++-- Cargo.toml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 18403fb..2837699 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -15,6 +15,8 @@ "lldb.executable": "/usr/bin/lldb", // VS Code don't watch files under ./target "files.watcherExclude": { + "**/.git/objects/**": true, + "**/.git/subtree-cache/**": true, "**/target/**": true }, "rust-analyzer.checkOnSave.command": "clippy", @@ -36,10 +38,8 @@ ] } }, - // Use 'forwardPorts' to make a list of ports inside the container available locally. // "forwardPorts": [], - // Use 'postCreateCommand' to run commands after the container is created. // "postCreateCommand": "docker --version", "postCreateCommand": "bash ./.devcontainer/scripts/postCreateCommand.sh", diff --git a/Cargo.toml b/Cargo.toml index 29e6cea..a6644b5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -22,8 +22,8 @@ serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } tokio = { version = "1", features = ["macros", "rt-multi-thread"] } -beteran-protobuf-rust = { git = "https://gitlab.loafle.net/bet/beteran-protobuf-rust.git", tag = "v0.1.21-snapshot" } -beteran-common-rust = { git = "https://gitlab.loafle.net/bet/beteran-common-rust.git", tag = "v0.1.1-snapshot" } +beteran-protobuf-rust = { git = "https://gitlab.loafle.net/bet/beteran-protobuf-rust.git", tag = "v0.1.22-snapshot" } +beteran-common-rust = { git = "https://gitlab.loafle.net/bet/beteran-common-rust.git", tag = "v0.1.2-snapshot" } [build-dependencies]