Merge pull request #4921 from liubin/fix/2920-delete-vergen

runtime-rs: delete vergen dependency
This commit is contained in:
Bin Liu
2022-08-17 10:09:12 +08:00
committed by GitHub
3 changed files with 0 additions and 153 deletions

View File

@@ -36,9 +36,6 @@ logging = { path = "../../../libs/logging"}
oci = { path = "../../../libs/oci" }
service = { path = "../service" }
[build-dependencies]
vergen = { version = "6", default-features = false, features = ["build", "git", "rustc"] }
[dev-dependencies]
tempfile = "3.2.0"
rand = "0.8.4"

View File

@@ -1,12 +0,0 @@
// Copyright (c) 2019-2022 Alibaba Cloud
// Copyright (c) 2019-2022 Ant Group
//
// SPDX-License-Identifier: Apache-2.0
//
use vergen::{vergen, Config};
fn main() {
// Generate the default 'cargo:' instruction output
vergen(Config::default()).unwrap();
}