2024-05-12 15:27:10 -07:00
|
|
|
[package]
|
2024-06-09 12:29:09 -07:00
|
|
|
name = "fish-printf"
|
2025-05-02 20:19:29 +02:00
|
|
|
edition.workspace = true
|
|
|
|
|
rust-version.workspace = true
|
2024-09-23 11:13:57 -07:00
|
|
|
version = "0.2.1"
|
2025-05-28 01:42:01 +02:00
|
|
|
repository.workspace = true
|
2024-06-09 12:20:05 -07:00
|
|
|
description = "printf implementation, based on musl"
|
|
|
|
|
license = "MIT"
|
2024-05-12 15:27:10 -07:00
|
|
|
|
|
|
|
|
[dependencies]
|
2024-06-05 17:02:57 +02:00
|
|
|
libc = "0.2.155"
|
2024-09-19 15:34:40 -07:00
|
|
|
widestring = { version = "1.0.2", optional = true }
|
2025-05-03 01:43:53 +02:00
|
|
|
unicode-segmentation = "1.12.0"
|
|
|
|
|
unicode-width = "0.2.0"
|
2025-05-02 20:19:29 +02:00
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
|
workspace = true
|