Merge pull request #11447

This commit is contained in:
Johannes Altmanninger
2025-05-03 14:09:30 +02:00
3 changed files with 10 additions and 2 deletions

View File

@@ -99,7 +99,7 @@ embed-data = ["dep:rust-embed"]
asan = []
tsan = []
[lints]
[workspace.lints]
rust.non_camel_case_types = "allow"
rust.non_upper_case_globals = "allow"
rust.unknown_lints = "allow"
@@ -113,3 +113,6 @@ clippy.needless_lifetimes = "allow"
# In the future, they might change to flag other methods of printing.
clippy.print_stdout = "deny"
clippy.print_stderr = "deny"
[lints]
workspace = true

View File

@@ -1,6 +1,7 @@
[package]
name = "fish-printf"
edition = "2021"
edition.workspace = true
rust-version.workspace = true
version = "0.2.1"
repository = "https://github.com/fish-shell/fish-shell"
description = "printf implementation, based on musl"
@@ -9,3 +10,6 @@ license = "MIT"
[dependencies]
libc = "0.2.155"
widestring = { version = "1.0.2", optional = true }
[lints]
workspace = true

1
printf/clippy.toml Normal file
View File

@@ -0,0 +1 @@
allow-print-in-tests = true