ratatui / templates

Templates for bootstrapping a Rust TUI application with Ratatui
https://ratatui.rs/templates
MIT License
255 stars 36 forks source link

Update ratatui to 0.28.0 and all other dependencies #69

Closed joshka closed 3 months ago

ismailarilik commented 2 months ago

Hello. I have a weird result related to this change. I have a Cargo.toml like this:

...
description = "<Not related>"
authors = ["<Not related>"]
build = "build.rs"repository = "https://github.com/<not-related>"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
...

As you see there is a syntax error in this line:

build = "build.rs"repository = "https://github.com/<not-related>"

I didn't investigate the reason nor try to solve it but this might work:

{% if repository != "" %}
repository = "{{repository}}"
{% endif %}

But if it works, it would be weird as well.

joshka commented 2 months ago

Thanks for the report. This is fixed in #75