rename crate

This commit is contained in:
guochao 2024-02-27 10:56:22 +08:00
parent 7a9b3aba6a
commit 0eee7be57d
Signed by: guochao
GPG Key ID: 79F7306D2AA32FC3
4 changed files with 27 additions and 29 deletions

50
Cargo.lock generated
View File

@ -1229,31 +1229,6 @@ dependencies = [
"unicode-segmentation",
]
[[package]]
name = "hello"
version = "0.1.0"
dependencies = [
"axum",
"clap",
"futures",
"include_dir",
"lazy_static",
"mime_guess",
"opentelemetry",
"opentelemetry-stdout",
"opentelemetry_sdk",
"sea-orm",
"serde",
"serde_json",
"tera",
"tokio",
"tower",
"tracing",
"tracing-opentelemetry",
"tracing-subscriber",
"webrtc",
]
[[package]]
name = "hermit-abi"
version = "0.3.8"
@ -1407,6 +1382,31 @@ dependencies = [
"cc",
]
[[package]]
name = "ice-publicip-checker"
version = "0.1.0"
dependencies = [
"axum",
"clap",
"futures",
"include_dir",
"lazy_static",
"mime_guess",
"opentelemetry",
"opentelemetry-stdout",
"opentelemetry_sdk",
"sea-orm",
"serde",
"serde_json",
"tera",
"tokio",
"tower",
"tracing",
"tracing-opentelemetry",
"tracing-subscriber",
"webrtc",
]
[[package]]
name = "idna"
version = "0.5.0"

View File

@ -1,11 +1,9 @@
[package]
name = "hello"
name = "ice-publicip-checker"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "server"
[dependencies]
futures = "0.3"

View File

@ -24,7 +24,7 @@
in
rec {
hello = rustPlatform.buildRustPackage rec {
pname = "hello";
pname = "ice-publicip-checker";
version = "1.0.0";
nativeBuildInputs = buildTools;