You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -68,13 +68,13 @@ cargo run --example expense_tracker -p inquire-examples
68
68
Put this line in your `Cargo.toml`, under `[dependencies]`.
69
69
70
70
```toml
71
-
inquire = "0.9.0"
71
+
inquire = "0.9.1"
72
72
```
73
73
74
74
\* This prompt type is gated under a feature flag, e.g.:
75
75
76
76
```toml
77
-
inquire = { version = "0.9.0", features = ["date"] }
77
+
inquire = { version = "0.9.1", features = ["date"] }
78
78
```
79
79
80
80
# Cross-cutting concerns
@@ -125,13 +125,13 @@ Binary Rust applications that intend to manipulate terminals will probably pick
125
125
However, if your application already uses a dependency other than crossterm, such as console or termion, you can enable another terminal via feature flags. It is also important to disable inquire's default features as it comes with `crossterm` enabled by default. Such as this:
126
126
127
127
```toml
128
-
inquire = { version = "0.9.0", default-features = false, features = ["termion", "date"] }
128
+
inquire = { version = "0.9.1", default-features = false, features = ["termion", "date"] }
129
129
```
130
130
131
131
or this:
132
132
133
133
```toml
134
-
inquire = { version = "0.9.0", default-features = false, features = ["console", "date"] }
134
+
inquire = { version = "0.9.1", default-features = false, features = ["console", "date"] }
135
135
```
136
136
137
137
## Formatting
@@ -322,7 +322,7 @@ For enum types, you can use the `Selectable` derive macro from the `inquire-deri
322
322
Add this to your `Cargo.toml`:
323
323
324
324
```toml
325
-
inquire = "0.9.0"
325
+
inquire = "0.9.1"
326
326
inquire-derive = "0.9.0"
327
327
```
328
328
@@ -380,7 +380,7 @@ For enum types, you can use the `Selectable` derive macro from the `inquire-deri
0 commit comments