mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-28 13:31:14 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [rstest](https://github.com/la10736/rstest) from 0.24.0 to 0.25.0. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/la10736/rstest/releases">rstest's releases</a>.</em></p> <blockquote> <h2>0.25.0</h2> <h2>What's Changed</h2> <ul> <li>Append generated test macro so next test macros are aware of it by <a href="https://github.com/kezhuw"><code>@kezhuw</code></a> in <a href="https://redirect.github.com/la10736/rstest/pull/291">la10736/rstest#291</a></li> <li>feat: add <code>include_str</code> and <code>include_bytes</code> file input behaviour by <a href="https://github.com/lucascool12"><code>@lucascool12</code></a> in <a href="https://redirect.github.com/la10736/rstest/pull/297">la10736/rstest#297</a></li> </ul> <h2>New Contributors</h2> <ul> <li><a href="https://github.com/kezhuw"><code>@kezhuw</code></a> made their first contribution in <a href="https://redirect.github.com/la10736/rstest/pull/291">la10736/rstest#291</a></li> <li><a href="https://github.com/lucascool12"><code>@lucascool12</code></a> made their first contribution in <a href="https://redirect.github.com/la10736/rstest/pull/297">la10736/rstest#297</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/la10736/rstest/compare/v0.24.0...v0.25.0">https://github.com/la10736/rstest/compare/v0.24.0...v0.25.0</a></p> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/la10736/rstest/blob/master/CHANGELOG.md">rstest's changelog</a>.</em></p> <blockquote> <h2>[0.25.0] 2025/3/2</h2> <h3>Changed</h3> <ul> <li>Append generated test macro so next test macros are aware of it (see <a href="https://redirect.github.com/la10736/rstest/pull/291">#291</a> thanks to <a href="https://github.com/kezhuw"><code>@kezhuw</code></a>).</li> </ul> <h3>Add</h3> <ul> <li>Added a <code>#[mode = ...]</code> attribute to be used with the <code>#[files(...)]</code> attribute to change the way the files get passed to the test. (see <a href="https://redirect.github.com/la10736/rstest/issues/295">#295</a> thanks to <a href="https://github.com/lucascool12"><code>@lucascool12</code></a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="8d80cea389
"><code>8d80cea</code></a> Prepare release</li> <li><a href="eb1f228eac
"><code>eb1f228</code></a> Make clippy happy</li> <li><a href="f570b0605b
"><code>f570b06</code></a> Avoid concurrent manifest changes in integration tests</li> <li><a href="8551eb8e29
"><code>8551eb8</code></a> feat: add <code>include_str</code> and <code>include_bytes</code> file input behaviour</li> <li><a href="e0b735e9c2
"><code>e0b735e</code></a> Append generated test macro so next test macros are aware of it</li> <li><a href="154d0b0d3f
"><code>154d0b0</code></a> Prepare develop</li> <li>See full diff in <a href="https://github.com/la10736/rstest/compare/v0.24.0...v0.25.0">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
100 lines
3.0 KiB
TOML
100 lines
3.0 KiB
TOML
[workspace]
|
|
resolver = "2"
|
|
members = ["ratatui", "ratatui-*", "xtask", "examples/apps/*"]
|
|
default-members = [
|
|
"ratatui",
|
|
"ratatui-core",
|
|
"ratatui-crossterm",
|
|
# this is not included as it doesn't compile on windows
|
|
# "ratatui-termion",
|
|
"ratatui-macros",
|
|
"ratatui-termwiz",
|
|
"ratatui-widgets",
|
|
"examples/apps/*",
|
|
]
|
|
|
|
[workspace.package]
|
|
authors = ["Florian Dehau <work@fdehau.com>", "The Ratatui Developers"]
|
|
documentation = "https://docs.rs/ratatui/latest/ratatui/"
|
|
repository = "https://github.com/ratatui/ratatui"
|
|
homepage = "https://ratatui.rs"
|
|
keywords = ["tui", "terminal", "dashboard"]
|
|
categories = ["command-line-interface"]
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
exclude = ["assets/*", ".github", "Makefile.toml", "CONTRIBUTING.md", "*.log", "tags"]
|
|
edition = "2021"
|
|
rust-version = "1.74.0"
|
|
|
|
[workspace.dependencies]
|
|
bitflags = "2.9.0"
|
|
color-eyre = "0.6.3"
|
|
crossterm = "0.28.1"
|
|
document-features = "0.2.11"
|
|
indoc = "2.0.5"
|
|
instability = "0.3.7"
|
|
itertools = "0.13.0"
|
|
pretty_assertions = "1.4.1"
|
|
ratatui = { path = "ratatui", version = "0.30.0-alpha.2" }
|
|
ratatui-core = { path = "ratatui-core", version = "0.1.0-alpha.3" }
|
|
ratatui-crossterm = { path = "ratatui-crossterm", version = "0.1.0-alpha.2" }
|
|
ratatui-macros = { path = "ratatui-macros", version = "0.7.0-alpha.1" }
|
|
ratatui-termion = { path = "ratatui-termion", version = "0.1.0-alpha.2" }
|
|
ratatui-termwiz = { path = "ratatui-termwiz", version = "0.1.0-alpha.2" }
|
|
ratatui-widgets = { path = "ratatui-widgets", version = "0.3.0-alpha.2" }
|
|
rstest = "0.25.0"
|
|
serde = { version = "1.0.218", features = ["derive"] }
|
|
serde_json = "1.0.140"
|
|
strum = { version = "0.26.3", features = ["derive"] }
|
|
termion = "4.0.4"
|
|
termwiz = { version = "0.23.0" }
|
|
unicode-segmentation = "1.12.0"
|
|
# See <https://github.com/ratatui/ratatui/issues/1271> for information about why we pin unicode-width
|
|
unicode-width = "=0.2.0"
|
|
|
|
# Improve benchmark consistency
|
|
[profile.bench]
|
|
codegen-units = 1
|
|
lto = true
|
|
|
|
[workspace.lints.rust]
|
|
unsafe_code = "forbid"
|
|
|
|
[workspace.lints.clippy]
|
|
pedantic = { level = "warn", priority = -1 }
|
|
cast_possible_truncation = "allow"
|
|
cast_possible_wrap = "allow"
|
|
cast_precision_loss = "allow"
|
|
cast_sign_loss = "allow"
|
|
missing_errors_doc = "allow"
|
|
missing_panics_doc = "allow"
|
|
module_name_repetitions = "allow"
|
|
must_use_candidate = "allow"
|
|
|
|
# we often split up a module into multiple files with the main type in a file named after the
|
|
# module, so we want to allow this pattern
|
|
module_inception = "allow"
|
|
|
|
# nursery or restricted
|
|
as_underscore = "warn"
|
|
deref_by_slicing = "warn"
|
|
else_if_without_else = "warn"
|
|
empty_line_after_doc_comments = "warn"
|
|
equatable_if_let = "warn"
|
|
fn_to_numeric_cast_any = "warn"
|
|
format_push_string = "warn"
|
|
map_err_ignore = "warn"
|
|
missing_const_for_fn = "warn"
|
|
mixed_read_write_in_expression = "warn"
|
|
mod_module_files = "warn"
|
|
needless_pass_by_ref_mut = "warn"
|
|
needless_raw_strings = "warn"
|
|
or_fun_call = "warn"
|
|
redundant_type_annotations = "warn"
|
|
rest_pat_in_fully_bound_structs = "warn"
|
|
string_lit_chars_any = "warn"
|
|
string_slice = "warn"
|
|
string_to_string = "warn"
|
|
unnecessary_self_imports = "warn"
|
|
use_self = "warn"
|