mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-15 14:41:14 -03:00
The decoding functions for our widestrings are already in the `fish_widestring` crate, so by symmetry, it makes sense to put the encoding functions there as well. This also makes it easier to depend on these functions, giving more options when it comes to further code extraction. Part of #12625
16 lines
284 B
TOML
16 lines
284 B
TOML
[package]
|
|
name = "fish-widestring"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
libc.workspace = true
|
|
unicode-width.workspace = true
|
|
widestring.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|