2022-06-03 17:55:01 +00:00
|
|
|
[package]
|
2023-01-07 10:41:15 +00:00
|
|
|
name = "echo-ip"
|
2024-10-05 03:18:00 +00:00
|
|
|
version = "0.1.1"
|
2022-06-03 17:55:01 +00:00
|
|
|
edition = "2021"
|
2023-01-18 02:44:15 +00:00
|
|
|
rust-version = "1.64"
|
|
|
|
license = "MIT"
|
2024-10-05 03:18:00 +00:00
|
|
|
authors = ["Yezzi Hsueh"]
|
2023-01-18 02:44:15 +00:00
|
|
|
description = "Echo your IP address"
|
|
|
|
repository = "https://code.simaek.com/xueye/echo-ip-rust"
|
|
|
|
readme = "README.md"
|
|
|
|
documentation = "https://docs.rs/echo-ip-rust"
|
2024-10-05 03:18:00 +00:00
|
|
|
keywords = ["ipecho", "http"]
|
2022-06-03 17:55:01 +00:00
|
|
|
|
2024-10-05 03:18:00 +00:00
|
|
|
[[bin]]
|
|
|
|
name = "ipecho"
|
|
|
|
path = "src/bin/echo-ip.rs"
|
2023-01-18 02:44:15 +00:00
|
|
|
|
|
|
|
[profile.release]
|
|
|
|
opt-level = 3
|
|
|
|
lto = "fat"
|
|
|
|
codegen-units = 1
|
|
|
|
incremental = false
|
|
|
|
panic = "abort"
|
|
|
|
strip = true
|
2022-06-03 17:55:01 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2023-01-18 02:44:15 +00:00
|
|
|
clap = { version = "4.1.1", features = ["derive"] }
|
2023-01-07 18:41:06 +00:00
|
|
|
ctrlc = {version = "3.2.4", features=["termination"]}
|