mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-23 03:03:57 +08:00
974ad882fa
Make fish-printf no longer depend on the widestring crate, as other clients won't use it; instead this is an optional feature. Make format strings a generic type, so that both narrow and wide strings can serve. This removes a lot of the complexity around converting from narrow to wide. Add a README.md to this crate.
11 lines
220 B
TOML
11 lines
220 B
TOML
[package]
|
|
name = "fish-printf"
|
|
edition = "2021"
|
|
version = "0.2.0"
|
|
description = "printf implementation, based on musl"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
libc = "0.2.155"
|
|
widestring = { version = "1.0.2", optional = true }
|