Skip to content

Commit

Permalink
Upgrade MSRV to 1.59.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pksunkara committed Apr 7, 2023
1 parent b6aef16 commit c4ee0e3
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 35 deletions.
2 changes: 1 addition & 1 deletion .clippy.toml
@@ -1 +1 @@
msrv = "1.51.0"
msrv = "1.56.0"
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Expand Up @@ -13,19 +13,19 @@ jobs:
include:
- os: macos-latest
target: x86_64-apple-darwin
rust: 1.56.0
rust: 1.59.0
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
rust: 1.56.0
rust: 1.59.0
- os: ubuntu-latest
target: i686-unknown-linux-gnu
rust: 1.56.0
rust: 1.59.0
- os: windows-latest
target: i686-pc-windows-msvc
rust: 1.56.0
rust: 1.59.0
- os: windows-latest
target: x86_64-pc-windows-msvc
rust: 1.56.0
rust: 1.59.0
- os: ubuntu-latest
target: x86_64-unknown-linux-gnu
rust: stable
Expand Down Expand Up @@ -58,7 +58,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.56.0
toolchain: 1.59.0
override: true
components: rustfmt, clippy
- name: Checkout
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,13 @@
# Changelog

## 0.11.0

### Enhancements

### Breaking

* Updated MSRV to `1.59.0`

## 0.10.4

### Enhancements
Expand Down
54 changes: 26 additions & 28 deletions Cargo.toml
@@ -1,53 +1,51 @@
[package]
name = "dialoguer"
description = "A command line prompting library."
version = "0.10.4"
edition = "2021"
authors = [
"Armin Ronacher <armin.ronacher@active-4.com>",
"Pavan Kumar Sunkara <pavan.sss1991@gmail.com>"
]
keywords = ["cli", "menu", "prompt"]
categories = ["command-line-interface"]
license = "MIT"
homepage = "https://github.com/console-rs/dialoguer"
repository = "https://github.com/console-rs/dialoguer"
authors = ["Armin Ronacher <armin.ronacher@active-4.com>", "Pavan Kumar Sunkara <pavan.sss1991@gmail.com>"]
categories = ["command-line-interface"]
description = "A command line prompting library."
documentation = "https://docs.rs/dialoguer"
readme = "README.md"
edition = "2021"
homepage = "https://github.com/console-rs/dialoguer"
keywords = ["cli", "menu", "prompt"]
license = "MIT"
name = "dialoguer"
readme = "README.md"
repository = "https://github.com/console-rs/dialoguer"
rust-version = "1.59.0"
version = "0.10.4"

[features]
default = ["editor", "password"]
editor = ["tempfile"]
completion = []
default = ["editor", "password"]
editor = ["tempfile"]
fuzzy-select = ["fuzzy-matcher"]
history = []
password = ["zeroize"]
completion = []
history = []
password = ["zeroize"]

[dependencies]
console = "0.15.0"
tempfile = { version = "3", optional = true }
zeroize = { version = "1.1.1", optional = true }
console = "0.15.0"
fuzzy-matcher = { version = "0.3.7", optional = true }
shell-words = "1.1.0"
shell-words = "1.1.0"
tempfile = { version = "3", optional = true }
zeroize = { version = "1.1.1", optional = true }

[[example]]
name = "password"
name = "password"
required-features = ["password"]

[[example]]
name = "editor"
name = "editor"
required-features = ["editor"]

[[example]]
name = "fuzzyselect"
name = "fuzzyselect"
required-features = ["fuzzy-select"]

[[example]]
name = "history"
name = "history"
required-features = ["history"]

[[example]]
name = "completion"
name = "completion"
required-features = ["completion"]

[workspace.metadata.workspaces]
Expand Down

0 comments on commit c4ee0e3

Please sign in to comment.