1
0
mirror of https://github.com/tonarino/innernet.git synced 2026-06-20 01:17:25 +02:00

Fix innernet client package name (#358)

This commit is contained in:
Marek Bernat
2025-08-12 11:32:44 +02:00
committed by GitHub
parent facbc9585c
commit e88d41c7e1
3 changed files with 24 additions and 24 deletions
Generated
+22 -22
View File
@@ -279,28 +279,6 @@ version = "0.7.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b94f61472cee1439c0b966b47e3aca9ae07e45d070759512cd390ea2bebc6675"
[[package]]
name = "client"
version = "1.6.1"
dependencies = [
"anyhow",
"clap",
"clap_complete",
"colored",
"dialoguer",
"indoc",
"ipnet",
"log",
"once_cell",
"regex",
"serde",
"serde_json",
"shared",
"tempfile",
"ureq",
"wireguard-control",
]
[[package]]
name = "colorchoice"
version = "1.0.4"
@@ -785,6 +763,28 @@ version = "2.0.6"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "f4c7245a08504955605670dbf141fceab975f15ca21570696aebe9d2e71576bd"
[[package]]
name = "innernet"
version = "1.6.1"
dependencies = [
"anyhow",
"clap",
"clap_complete",
"colored",
"dialoguer",
"indoc",
"ipnet",
"log",
"once_cell",
"regex",
"serde",
"serde_json",
"shared",
"tempfile",
"ureq",
"wireguard-control",
]
[[package]]
name = "innernet-server"
version = "1.6.1"
+1 -1
View File
@@ -9,7 +9,7 @@ description = "A client to manage innernet network interfaces."
edition = "2021"
homepage = "https://github.com/tonarino/innernet"
license = "MIT"
name = "client"
name = "innernet"
publish = false
readme = "README.md"
repository = "https://github.com/tonarino/innernet"
+1 -1
View File
@@ -24,7 +24,7 @@ RUN apt-get update && \
WORKDIR /app
COPY . .
RUN cargo build --features client/selinux \
RUN cargo build --features innernet/selinux \
&& strip /app/target/debug/innernet /app/target/debug/innernet-server \
&& cp /app/target/debug/innernet /app/target/debug/innernet-server /usr/bin/ \
&& cargo clean