mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-19 14:51:13 -03:00
This allows us to track all dependencies in a single place and automatically avoids using different versions of the same dependency in different crates. Sort dependencies alphabetically. Closes #11751
18 lines
385 B
TOML
18 lines
385 B
TOML
[package]
|
|
name = "fish-printf"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
version = "0.2.1"
|
|
repository.workspace = true
|
|
description = "printf implementation, based on musl"
|
|
license = "MIT"
|
|
|
|
[dependencies]
|
|
libc.workspace = true
|
|
widestring = { workspace = true, optional = true }
|
|
unicode-segmentation.workspace = true
|
|
unicode-width.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|