Skip to content

Commit

Permalink
vsock-proxy: Bump version to 1.0.1
Browse files Browse the repository at this point in the history
Signed-off-by: Erdem MEYDANLI <[email protected]>
  • Loading branch information
meerd committed Jun 3, 2024
1 parent e248e75 commit 4e3d84c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vsock_proxy/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vsock-proxy"
version = "1.0.0"
version = "1.0.1"
authors = ["The AWS Nitro Enclaves Team <[email protected]>"]
edition = "2018"
rust-version = "1.68"
Expand Down
6 changes: 3 additions & 3 deletions vsock_proxy/src/main.rs
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
// Copyright 2019 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
// SPDX-License-Identifier: Apache-2.0
#![deny(warnings)]

/// Simple proxy for translating vsock traffic to TCP traffic
/// Example of usage:
/// vsock-proxy 8000 127.0.0.1 9000
///
use clap::{App, AppSettings, Arg};
use clap::{App, Arg};
use env_logger::init;
use log::info;

Expand All @@ -20,7 +20,7 @@ fn main() -> VsockProxyResult<()> {

let matches = App::new("Vsock-TCP proxy")
.about("Vsock-TCP proxy")
.setting(AppSettings::DisableVersion)
.version(env!("CARGO_PKG_VERSION"))
.arg(
Arg::with_name("ipv4")
.short('4')
Expand Down

0 comments on commit 4e3d84c

Please sign in to comment.