[GH-ISSUE #633] Update MSRV notice in README #941

Closed
opened 2026-03-15 11:05:06 +03:00 by kerem · 3 comments
Owner

Originally created by @non-descriptive on GitHub (May 22, 2024).
Original GitHub issue: https://github.com/asciinema/asciinema/issues/633

I've attempted to install the most recent version of code via cargo and it cried me

error[E0658]: `#[diagnostic]` attribute name space is experimental
   --> /home/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/axum-0.7.5/src/handler/mod.rs:130:5
    |
130 |     diagnostic::on_unimplemented(
    |     ^^^^^^^^^^

Which means my compiler is outdated to build it. So minimal supported rust version should be at least 1.78, due to axum.

Originally created by @non-descriptive on GitHub (May 22, 2024). Original GitHub issue: https://github.com/asciinema/asciinema/issues/633 I've attempted to install the most recent version of code via cargo and it cried me ``` error[E0658]: `#[diagnostic]` attribute name space is experimental --> /home/user/.cargo/registry/src/index.crates.io-6f17d22bba15001f/axum-0.7.5/src/handler/mod.rs:130:5 | 130 | diagnostic::on_unimplemented( | ^^^^^^^^^^ ``` Which means my compiler is outdated to build it. So minimal supported rust version should be at least 1.78, due to `axum`.
kerem closed this issue 2026-03-15 11:05:11 +03:00
Author
Owner

@ku1ik commented on GitHub (May 22, 2024):

Weird, works for me:

$ rustc --version
rustc 1.70.0 (90c541806 2023-05-31)

$ cargo build
   Compiling tracing v0.1.40
   Compiling clap_builder v4.4.18
   Compiling rustls v0.21.11
   Compiling axum-core v0.4.3
   Compiling serde_json v1.0.113
   Compiling roff v0.2.1
   Compiling axum v0.7.4
   Compiling tower v0.4.13
   Compiling tokio-util v0.7.10
   Compiling tower-http v0.5.1
   Compiling tracing-subscriber v0.3.18
   Compiling h2 v0.3.26
   Compiling h2 v0.4.2
   Compiling tokio-stream v0.1.14
   Compiling clap v4.4.18
   Compiling clap_complete v4.4.10
   Compiling clap_mangen v0.2.19
   Compiling tokio-rustls v0.24.1
   Compiling asciinema v3.0.0-rc.2 (/home/marcin/projects/asciinema/asciinema)
   Compiling hyper v1.1.0
   Compiling hyper v0.14.28
   Compiling hyper-util v0.1.3
   Compiling hyper-rustls v0.24.2
   Compiling reqwest v0.11.24
    Finished dev [unoptimized + debuginfo] target(s) in 15.38s

$ cargo build -r
   Compiling mio v0.8.11
   Compiling ring v0.17.8
   Compiling tracing v0.1.40
   Compiling utf8parse v0.2.1
   Compiling colorchoice v1.0.0
   Compiling rustls-pki-types v1.4.0
   Compiling anstyle v1.0.6
   Compiling anstyle-query v1.0.2
   Compiling strsim v0.10.0
   Compiling tinyvec_macros v0.1.1
   Compiling clap_lex v0.6.0
   Compiling subtle v2.5.0
   Compiling rustls v0.21.11
   Compiling zeroize v1.7.0
   Compiling unicode-bidi v0.3.15
   Compiling percent-encoding v2.3.1
   Compiling tinyvec v1.6.0
   Compiling anstyle-parse v0.2.3
   Compiling axum-core v0.4.3
   Compiling roff v0.2.1
   Compiling form_urlencoded v1.2.1
   Compiling anstream v0.6.11
   Compiling serde_json v1.0.113
   Compiling axum v0.7.4
   Compiling webpki-roots v0.26.1
   Compiling tracing-subscriber v0.3.18
   Compiling avt v0.10.3
   Compiling tower-http v0.5.1
   Compiling tokio v1.36.0
   Compiling clap_builder v4.4.18
   Compiling unicode-normalization v0.1.22
   Compiling idna v0.5.0
   Compiling url v2.5.0
   Compiling clap v4.4.18
   Compiling clap_mangen v0.2.19
   Compiling clap_complete v4.4.10
   Compiling asciinema v3.0.0-rc.2 (/home/marcin/projects/asciinema/asciinema)
   Compiling tokio-util v0.7.10
   Compiling tower v0.4.13
   Compiling async-compression v0.4.6
   Compiling h2 v0.4.2
   Compiling h2 v0.3.26
   Compiling tokio-stream v0.1.14
   Compiling hyper v0.14.28
   Compiling hyper v1.1.0
   Compiling rustls v0.22.3
   Compiling hyper-util v0.1.3
   Compiling rustls-webpki v0.102.2
   Compiling rustls-webpki v0.101.7
   Compiling sct v0.7.1
   Compiling tokio-rustls v0.24.1
   Compiling hyper-rustls v0.24.2
   Compiling reqwest v0.11.24
   Compiling tokio-rustls v0.25.0
   Compiling tungstenite v0.21.0
   Compiling tokio-tungstenite v0.21.0
    Finished release [optimized] target(s) in 24.10s

Builds in both debug and release modes.

What's interesting is your error message mentions axum 0.7.5, while Cargo.lock specifies 0.7.4.

<!-- gh-comment-id:2125130130 --> @ku1ik commented on GitHub (May 22, 2024): Weird, works for me: ``` $ rustc --version rustc 1.70.0 (90c541806 2023-05-31) $ cargo build Compiling tracing v0.1.40 Compiling clap_builder v4.4.18 Compiling rustls v0.21.11 Compiling axum-core v0.4.3 Compiling serde_json v1.0.113 Compiling roff v0.2.1 Compiling axum v0.7.4 Compiling tower v0.4.13 Compiling tokio-util v0.7.10 Compiling tower-http v0.5.1 Compiling tracing-subscriber v0.3.18 Compiling h2 v0.3.26 Compiling h2 v0.4.2 Compiling tokio-stream v0.1.14 Compiling clap v4.4.18 Compiling clap_complete v4.4.10 Compiling clap_mangen v0.2.19 Compiling tokio-rustls v0.24.1 Compiling asciinema v3.0.0-rc.2 (/home/marcin/projects/asciinema/asciinema) Compiling hyper v1.1.0 Compiling hyper v0.14.28 Compiling hyper-util v0.1.3 Compiling hyper-rustls v0.24.2 Compiling reqwest v0.11.24 Finished dev [unoptimized + debuginfo] target(s) in 15.38s $ cargo build -r Compiling mio v0.8.11 Compiling ring v0.17.8 Compiling tracing v0.1.40 Compiling utf8parse v0.2.1 Compiling colorchoice v1.0.0 Compiling rustls-pki-types v1.4.0 Compiling anstyle v1.0.6 Compiling anstyle-query v1.0.2 Compiling strsim v0.10.0 Compiling tinyvec_macros v0.1.1 Compiling clap_lex v0.6.0 Compiling subtle v2.5.0 Compiling rustls v0.21.11 Compiling zeroize v1.7.0 Compiling unicode-bidi v0.3.15 Compiling percent-encoding v2.3.1 Compiling tinyvec v1.6.0 Compiling anstyle-parse v0.2.3 Compiling axum-core v0.4.3 Compiling roff v0.2.1 Compiling form_urlencoded v1.2.1 Compiling anstream v0.6.11 Compiling serde_json v1.0.113 Compiling axum v0.7.4 Compiling webpki-roots v0.26.1 Compiling tracing-subscriber v0.3.18 Compiling avt v0.10.3 Compiling tower-http v0.5.1 Compiling tokio v1.36.0 Compiling clap_builder v4.4.18 Compiling unicode-normalization v0.1.22 Compiling idna v0.5.0 Compiling url v2.5.0 Compiling clap v4.4.18 Compiling clap_mangen v0.2.19 Compiling clap_complete v4.4.10 Compiling asciinema v3.0.0-rc.2 (/home/marcin/projects/asciinema/asciinema) Compiling tokio-util v0.7.10 Compiling tower v0.4.13 Compiling async-compression v0.4.6 Compiling h2 v0.4.2 Compiling h2 v0.3.26 Compiling tokio-stream v0.1.14 Compiling hyper v0.14.28 Compiling hyper v1.1.0 Compiling rustls v0.22.3 Compiling hyper-util v0.1.3 Compiling rustls-webpki v0.102.2 Compiling rustls-webpki v0.101.7 Compiling sct v0.7.1 Compiling tokio-rustls v0.24.1 Compiling hyper-rustls v0.24.2 Compiling reqwest v0.11.24 Compiling tokio-rustls v0.25.0 Compiling tungstenite v0.21.0 Compiling tokio-tungstenite v0.21.0 Finished release [optimized] target(s) in 24.10s ``` Builds in both debug and release modes. What's interesting is your error message mentions axum 0.7.5, while Cargo.lock specifies 0.7.4.
Author
Owner

@non-descriptive commented on GitHub (May 22, 2024):

20:36:14,26|C:\folder>rustc --version
rustc 1.72.1 (d5c2e9c34 2023-09-13)

20:36:28,86|C:\folder>cargo install --git https://github.com/asciinema/asciinema
    Updating git repository `https://github.com/asciinema/asciinema`
  Installing asciinema v3.0.0-rc.2 (https://github.com/asciinema/asciinema#6ddaa53b)
    Updating crates.io index
  Downloaded anstyle-parse v0.2.4
  Downloaded anstyle-wincon v3.0.3
  Downloaded crunchy v0.2.2
  Downloaded anstyle v1.0.7
  Downloaded new_debug_unreachable v1.0.6
  Downloaded rust-ini v0.19.0
  Downloaded http-body v1.0.0
  Downloaded rust-embed-utils v8.4.0
  Downloaded rust-embed-impl v8.4.0
  Downloaded futures-task v0.3.30
  Downloaded roff v0.2.1
  Downloaded sync_wrapper v1.0.1
  Downloaded quote v1.0.36
  Downloaded windows-targets v0.52.5
  Downloaded termion v3.0.0
  Downloaded rustversion v1.0.17
  Downloaded rustls-pki-types v1.7.0
  Downloaded url v2.5.0
  Downloaded unicode-segmentation v1.11.0
  Downloaded winnow v0.6.8
  Downloaded rustls-webpki v0.102.4
  Downloaded windows_x86_64_msvc v0.52.5
  Downloaded windows-sys v0.52.0
  Downloaded tokio v1.37.0
  Downloaded rustls v0.22.4
  Downloaded winsafe v0.0.19
  Downloaded webpki-roots v0.26.1
  Downloaded webpki-roots v0.25.4
  Downloaded tracing-subscriber v0.3.18
  Downloaded syn v2.0.65
  Downloaded ring v0.17.8
  Downloaded unicode-normalization v0.1.23
  Downloaded tower-http v0.5.2
  Downloaded tokio-util v0.7.11
  Downloaded serde_json v1.0.117
  Downloaded tungstenite v0.21.0
  Downloaded toml_edit v0.22.13
  Downloaded rust-embed v8.4.0
  Downloaded encoding_rs v0.8.34
  Downloaded serde v1.0.202
  Downloaded regex-automata v0.4.6
  Downloaded libc v0.2.155
  Downloaded avt v0.10.3
  Downloaded walkdir v2.5.0
  Downloaded uuid v1.8.0
  Downloaded unicode-width v0.1.12
  Downloaded unicode-bidi v0.3.15
  Downloaded toml v0.8.13
  Downloaded tokio-tungstenite v0.21.0
  Downloaded tokio-stream v0.1.15
  Downloaded thiserror-impl v1.0.61
  Downloaded socket2 v0.5.7
  Downloaded signal-hook v0.3.17
  Downloaded serde_derive v1.0.202
  Downloaded semver v1.0.23
  Downloaded selectors v0.24.0
  Downloaded ryu v1.0.18
  Downloaded rustyline v13.0.0
  Downloaded rustls v0.21.12
  Downloaded regex-syntax v0.8.3
  Downloaded regex v1.10.4
  Downloaded radix_trie v0.2.1
  Downloaded nix v0.27.1
  Downloaded idna v0.5.0
  Downloaded hyper v0.14.28
  Downloaded h2 v0.3.26
  Downloaded aho-corasick v1.1.3
  Downloaded zeroize v1.7.0
  Downloaded winapi-util v0.1.8
  Downloaded which v6.0.1
  Downloaded tracing-log v0.2.0
  Downloaded toml_datetime v0.6.6
  Downloaded tokio-rustls v0.25.0
  Downloaded tiny-keccak v2.0.2
  Downloaded thread_local v1.1.8
  Downloaded thiserror v1.0.61
  Downloaded smallvec v1.13.2
  Downloaded serde_spanned v0.6.6
  Downloaded reqwest v0.11.27
  Downloaded hyper v1.3.1
  Downloaded http v1.1.0
  Downloaded hashbrown v0.14.5
  Downloaded hashbrown v0.13.2
  Downloaded futures-util v0.3.30
  Downloaded clap_builder v4.5.2
  Downloaded axum v0.7.5
  Downloaded tempfile v3.10.1
  Downloaded strsim v0.11.1
  Downloaded signal-hook-registry v1.4.2
  Downloaded memchr v2.7.2
  Downloaded http v0.2.12
  Downloaded try-lock v0.2.5
  Downloaded servo_arc v0.2.0
  Downloaded scraper v0.15.0
  Downloaded proc-macro2 v1.0.83
  Downloaded pin-project v1.1.5
  Downloaded parking_lot v0.12.2
  Downloaded mio v0.8.11
  Downloaded indexmap v2.2.6
  Downloaded hyper-util v0.1.3
  Downloaded flate2 v1.0.30
  Downloaded cssparser v0.29.6
  Downloaded crc32fast v1.4.2
  Downloaded config v0.14.0
  Downloaded cc v1.0.98
  Downloaded base64 v0.21.7
  Downloaded async-compression v0.4.10
  Downloaded pin-project-lite v0.2.14
  Downloaded pin-project-internal v1.1.5
  Downloaded miniz_oxide v0.7.3
  Downloaded log v0.4.21
  Downloaded bytes v1.6.0
  Downloaded anyhow v1.0.86
  Downloaded parking_lot_core v0.9.10
  Downloaded once_cell v1.19.0
  Downloaded lock_api v0.4.12
  Downloaded ego-tree v0.6.2
  Downloaded clipboard-win v5.3.1
  Downloaded clap v4.5.4
  Downloaded bytemuck v1.16.0
  Downloaded rgb v0.8.37
  Downloaded percent-encoding v2.3.1
  Downloaded ordered-multimap v0.6.0
  Downloaded numtoa v0.1.0
  Downloaded nibble_vec v0.1.0
  Downloaded itoa v1.0.11
  Downloaded http-body-util v0.1.1
  Downloaded http-body v0.4.6
  Downloaded home v0.5.9
  Downloaded heck v0.5.0
  Downloaded getrandom v0.2.15
  Downloaded futures-io v0.3.30
  Downloaded futures-core v0.3.30
  Downloaded futures-channel v0.3.30
  Downloaded form_urlencoded v1.2.1
  Downloaded error-code v3.2.0
  Downloaded either v1.12.0
  Downloaded cpufeatures v0.2.12
  Downloaded clap_derive v4.5.4
  Downloaded bitflags v2.5.0
  Downloaded anstream v0.6.14
  Downloaded clap_lex v0.7.0
  Downloaded clap_complete v4.5.2
  Downloaded is_terminal_polyfill v1.70.0
error: failed to compile `asciinema v3.0.0-rc.2 (https://github.com/asciinema/asciinema#6ddaa53b)`, intermediate artifacts can be found a
t `C:\Users\USER~1\AppData\Local\Temp\cargo-installh9sPEn`.
To reuse those artifacts with a future compilation, set the environment variable `CARGO_TARGET_DIR` to that path.

Caused by:
  package `clap_lex v0.7.0` cannot be built because it requires rustc 1.74 or newer, while the currently active rustc version is 1.72.1
  Either upgrade to rustc 1.74 or newer, or use
  cargo update -p clap_lex@0.7.0 --precise ver
  where `ver` is the latest version of `clap_lex` supporting rustc 1.72.1

Did like README said - cargo install --git https://github.com/asciinema/asciinema, not just cargo build on whatever branch you were. On windows as you can see it's a yields a bit differently and still at least downloads axum 0.7.5. No idea where it came from. Could it be because default branch is develop? cargo tree shown only 0.7.4.
The first attempt was on Linux on 1.76 version methinks.

Just cargo build on develop took me to the point where termion failed to build but it's Windows stuff, not compiler version issue.
Also by default I think it doesn't respect lock file unless --locked passed to the install. Anyway it should be mentioned in README then.

<!-- gh-comment-id:2125408039 --> @non-descriptive commented on GitHub (May 22, 2024): ``` 20:36:14,26|C:\folder>rustc --version rustc 1.72.1 (d5c2e9c34 2023-09-13) 20:36:28,86|C:\folder>cargo install --git https://github.com/asciinema/asciinema Updating git repository `https://github.com/asciinema/asciinema` Installing asciinema v3.0.0-rc.2 (https://github.com/asciinema/asciinema#6ddaa53b) Updating crates.io index Downloaded anstyle-parse v0.2.4 Downloaded anstyle-wincon v3.0.3 Downloaded crunchy v0.2.2 Downloaded anstyle v1.0.7 Downloaded new_debug_unreachable v1.0.6 Downloaded rust-ini v0.19.0 Downloaded http-body v1.0.0 Downloaded rust-embed-utils v8.4.0 Downloaded rust-embed-impl v8.4.0 Downloaded futures-task v0.3.30 Downloaded roff v0.2.1 Downloaded sync_wrapper v1.0.1 Downloaded quote v1.0.36 Downloaded windows-targets v0.52.5 Downloaded termion v3.0.0 Downloaded rustversion v1.0.17 Downloaded rustls-pki-types v1.7.0 Downloaded url v2.5.0 Downloaded unicode-segmentation v1.11.0 Downloaded winnow v0.6.8 Downloaded rustls-webpki v0.102.4 Downloaded windows_x86_64_msvc v0.52.5 Downloaded windows-sys v0.52.0 Downloaded tokio v1.37.0 Downloaded rustls v0.22.4 Downloaded winsafe v0.0.19 Downloaded webpki-roots v0.26.1 Downloaded webpki-roots v0.25.4 Downloaded tracing-subscriber v0.3.18 Downloaded syn v2.0.65 Downloaded ring v0.17.8 Downloaded unicode-normalization v0.1.23 Downloaded tower-http v0.5.2 Downloaded tokio-util v0.7.11 Downloaded serde_json v1.0.117 Downloaded tungstenite v0.21.0 Downloaded toml_edit v0.22.13 Downloaded rust-embed v8.4.0 Downloaded encoding_rs v0.8.34 Downloaded serde v1.0.202 Downloaded regex-automata v0.4.6 Downloaded libc v0.2.155 Downloaded avt v0.10.3 Downloaded walkdir v2.5.0 Downloaded uuid v1.8.0 Downloaded unicode-width v0.1.12 Downloaded unicode-bidi v0.3.15 Downloaded toml v0.8.13 Downloaded tokio-tungstenite v0.21.0 Downloaded tokio-stream v0.1.15 Downloaded thiserror-impl v1.0.61 Downloaded socket2 v0.5.7 Downloaded signal-hook v0.3.17 Downloaded serde_derive v1.0.202 Downloaded semver v1.0.23 Downloaded selectors v0.24.0 Downloaded ryu v1.0.18 Downloaded rustyline v13.0.0 Downloaded rustls v0.21.12 Downloaded regex-syntax v0.8.3 Downloaded regex v1.10.4 Downloaded radix_trie v0.2.1 Downloaded nix v0.27.1 Downloaded idna v0.5.0 Downloaded hyper v0.14.28 Downloaded h2 v0.3.26 Downloaded aho-corasick v1.1.3 Downloaded zeroize v1.7.0 Downloaded winapi-util v0.1.8 Downloaded which v6.0.1 Downloaded tracing-log v0.2.0 Downloaded toml_datetime v0.6.6 Downloaded tokio-rustls v0.25.0 Downloaded tiny-keccak v2.0.2 Downloaded thread_local v1.1.8 Downloaded thiserror v1.0.61 Downloaded smallvec v1.13.2 Downloaded serde_spanned v0.6.6 Downloaded reqwest v0.11.27 Downloaded hyper v1.3.1 Downloaded http v1.1.0 Downloaded hashbrown v0.14.5 Downloaded hashbrown v0.13.2 Downloaded futures-util v0.3.30 Downloaded clap_builder v4.5.2 Downloaded axum v0.7.5 Downloaded tempfile v3.10.1 Downloaded strsim v0.11.1 Downloaded signal-hook-registry v1.4.2 Downloaded memchr v2.7.2 Downloaded http v0.2.12 Downloaded try-lock v0.2.5 Downloaded servo_arc v0.2.0 Downloaded scraper v0.15.0 Downloaded proc-macro2 v1.0.83 Downloaded pin-project v1.1.5 Downloaded parking_lot v0.12.2 Downloaded mio v0.8.11 Downloaded indexmap v2.2.6 Downloaded hyper-util v0.1.3 Downloaded flate2 v1.0.30 Downloaded cssparser v0.29.6 Downloaded crc32fast v1.4.2 Downloaded config v0.14.0 Downloaded cc v1.0.98 Downloaded base64 v0.21.7 Downloaded async-compression v0.4.10 Downloaded pin-project-lite v0.2.14 Downloaded pin-project-internal v1.1.5 Downloaded miniz_oxide v0.7.3 Downloaded log v0.4.21 Downloaded bytes v1.6.0 Downloaded anyhow v1.0.86 Downloaded parking_lot_core v0.9.10 Downloaded once_cell v1.19.0 Downloaded lock_api v0.4.12 Downloaded ego-tree v0.6.2 Downloaded clipboard-win v5.3.1 Downloaded clap v4.5.4 Downloaded bytemuck v1.16.0 Downloaded rgb v0.8.37 Downloaded percent-encoding v2.3.1 Downloaded ordered-multimap v0.6.0 Downloaded numtoa v0.1.0 Downloaded nibble_vec v0.1.0 Downloaded itoa v1.0.11 Downloaded http-body-util v0.1.1 Downloaded http-body v0.4.6 Downloaded home v0.5.9 Downloaded heck v0.5.0 Downloaded getrandom v0.2.15 Downloaded futures-io v0.3.30 Downloaded futures-core v0.3.30 Downloaded futures-channel v0.3.30 Downloaded form_urlencoded v1.2.1 Downloaded error-code v3.2.0 Downloaded either v1.12.0 Downloaded cpufeatures v0.2.12 Downloaded clap_derive v4.5.4 Downloaded bitflags v2.5.0 Downloaded anstream v0.6.14 Downloaded clap_lex v0.7.0 Downloaded clap_complete v4.5.2 Downloaded is_terminal_polyfill v1.70.0 error: failed to compile `asciinema v3.0.0-rc.2 (https://github.com/asciinema/asciinema#6ddaa53b)`, intermediate artifacts can be found a t `C:\Users\USER~1\AppData\Local\Temp\cargo-installh9sPEn`. To reuse those artifacts with a future compilation, set the environment variable `CARGO_TARGET_DIR` to that path. Caused by: package `clap_lex v0.7.0` cannot be built because it requires rustc 1.74 or newer, while the currently active rustc version is 1.72.1 Either upgrade to rustc 1.74 or newer, or use cargo update -p clap_lex@0.7.0 --precise ver where `ver` is the latest version of `clap_lex` supporting rustc 1.72.1 ``` Did like README said - `cargo install --git https://github.com/asciinema/asciinema`, not just `cargo build` on whatever branch you were. On windows as you can see it's a yields a bit differently and still at least downloads `axum 0.7.5`. No idea where it came from. Could it be because default branch is `develop`? `cargo tree` shown only `0.7.4`. The first attempt was on Linux on 1.76 version methinks. Just `cargo build` on `develop` took me to the point where `termion` failed to build but it's Windows stuff, not compiler version issue. Also by default I think it doesn't respect lock file unless `--locked` passed to the `install`. Anyway it should be mentioned in README then.
Author
Owner

@ku1ik commented on GitHub (May 22, 2024):

Interesting! I assumed cargo install --git ... respects Cargo.lock just as cargo build, but apparently it doesn't. That would explain why it wants pull newer axum or clap_lex. I'll investigate this further, but probably mentioning --locked flag in the README is a good idea.

<!-- gh-comment-id:2125544738 --> @ku1ik commented on GitHub (May 22, 2024): Interesting! I assumed `cargo install --git ...` respects Cargo.lock just as `cargo build`, but apparently it doesn't. That would explain why it wants pull newer axum or clap_lex. I'll investigate this further, but probably mentioning `--locked` flag in the README is a good idea.
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/asciinema#941
No description provided.