Skip to content

Commit a8f3a1f

Browse files
Bump structopt from 0.3.23 to 0.3.25 (starcoinorg#2963)
Bumps [structopt](https://github.com/TeXitoi/structopt) from 0.3.23 to 0.3.25. - [Release notes](https://github.com/TeXitoi/structopt/releases) - [Changelog](https://github.com/TeXitoi/structopt/blob/master/CHANGELOG.md) - [Commits](TeXitoi/structopt@v0.3.23...v0.3.25) --- updated-dependencies: - dependency-name: structopt dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 6fe2a33 commit a8f3a1f

File tree

19 files changed

+54
-54
lines changed

19 files changed

+54
-54
lines changed

Cargo.lock

Lines changed: 36 additions & 36 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

cmd/faucet/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ tokio-executor = { version = "0.2.0-alpha.6", features = ["blocking"] }
1616
futures-timer = "3.0"
1717
ascii = "0.8"
1818
rust-embed = "5.9.0"
19-
structopt = "0.3.23"
19+
structopt = "0.3.25"
2020
serde = { version = "1.0.130" }
2121
serde_json = { version="1.0", features = ["arbitrary_precision"]}
2222
once_cell = "1.8.0"

cmd/generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ serde_json = { version = "1.0", features = ["arbitrary_precision"] }
1313
futures = "0.3.12"
1414
hex = { version = "0.4.3", default-features = false }
1515
futures-timer = "3.0"
16-
structopt = "0.3.23"
16+
structopt = "0.3.25"
1717
scmd = { path = "../../commons/scmd" }
1818
starcoin-logger = { path = "../../commons/logger" }
1919
starcoin-config = { path = "../../config" }

cmd/miner_client/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ byteorder = "1.4.3"
3030
futures-timer = "3.0"
3131
hex = { version = "0.4.3", default-features = false }
3232
thiserror = "1.0"
33-
structopt = "0.3.23"
33+
structopt = "0.3.25"
3434
starcoin-rpc-client = { path = "../../rpc/client" }
3535
starcoin-rpc-api = { path = "../../rpc/api" }
3636
starcoin-service-registry = { path = "../../commons/service-registry" }

cmd/peer-watcher/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ path = "src/main.rs"
1212

1313
[dependencies]
1414
anyhow = "1.0.41"
15-
structopt = "0.3.23"
15+
structopt = "0.3.25"
1616
async-std = "1.10"
1717
futures = "0.3.12"
1818
starcoin-crypto = { path = "../../commons/crypto"}

cmd/replay/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ name = "starcoin_replay"
1111
path = "src/main.rs"
1212

1313
[dependencies]
14-
structopt = "0.3.23"
14+
structopt = "0.3.25"
1515
starcoin-config = { path = "../../config"}
1616
starcoin-chain = { path = "../../chain"}
1717
starcoin-genesis = { path = "../../genesis"}

cmd/starcoin/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ crossbeam-channel = "0.5.1"
1515
tokio = { version = "0.2", features = ["full"] }
1616
futures = "0.3.12"
1717
bcs-ext = { package="bcs-ext", path = "../../commons/bcs_ext" }
18-
structopt = "0.3.23"
18+
structopt = "0.3.25"
1919
itertools = "0.10.1"
2020
reqwest = "0.11.5"
2121

cmd/tx-factory/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ path = "src/main.rs"
1212

1313
[dependencies]
1414
anyhow = "1.0.41"
15-
structopt = "0.3.23"
15+
structopt = "0.3.25"
1616
ctrlc = { version = "3.2.1", features = ["termination"] }
1717
futures = "0.3.12"
1818
tokio = { version = "0.2", features = ["full"] }

commons/scmd/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ anyhow = "1.0.41"
1111
thiserror = "1.0"
1212
serde = { version = "1.0.130", features = ["derive"] }
1313
rustyline = "9.0.0"
14-
structopt = "0.3.23"
14+
structopt = "0.3.25"
1515
clap = "2.33.3"
1616
serde_json = { version="1.0", features = ["arbitrary_precision"]}
1717
rust-flatten-json = "0.2.0"

config/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ thiserror = "1.0"
1414
serde = { version = "1.0.130", features = ["derive"] }
1515
serde_json = { version = "1.0", features = ["arbitrary_precision"] }
1616
toml = { version = "0.5.8", default-features = false }
17-
structopt = "0.3.23"
17+
structopt = "0.3.25"
1818
git-version = "0.3.5"
1919
names = "0.12.0"
2020
starcoin-crypto = { path = "../commons/crypto"}

0 commit comments

Comments
 (0)