mirror of
https://github.com/SeriousBug/gandi-live-dns-rust
synced 2024-12-27 23:59:56 -06:00
fix incorrect name on version string
This commit is contained in:
parent
59e4a5e4d9
commit
948521fcc4
2
Cargo.lock
generated
2
Cargo.lock
generated
|
@ -226,7 +226,7 @@ dependencies = [
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "gandi-live-dns"
|
name = "gandi-live-dns"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"die-exit",
|
"die-exit",
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "gandi-live-dns"
|
name = "gandi-live-dns"
|
||||||
version = "1.0.0"
|
version = "1.0.1"
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|
||||||
[profile.release]
|
[profile.release]
|
||||||
|
|
|
@ -2,7 +2,7 @@ use structopt::StructOpt;
|
||||||
|
|
||||||
/// A tool to automatically update DNS entries on Gandi, using it as a dynamic DNS system.
|
/// A tool to automatically update DNS entries on Gandi, using it as a dynamic DNS system.
|
||||||
#[derive(StructOpt, Debug)]
|
#[derive(StructOpt, Debug)]
|
||||||
#[structopt(name = "gandi-dynamic-dns")]
|
#[structopt(name = "gandi-live-dns")]
|
||||||
pub struct Opts {
|
pub struct Opts {
|
||||||
/// The path to the configuration file.
|
/// The path to the configuration file.
|
||||||
#[structopt(long)]
|
#[structopt(long)]
|
||||||
|
|
Loading…
Reference in a new issue