mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-14 22:11:16 -03:00
Move the functions for escaping and unescaping strings from `src/common.rs` into `fish_common`. It might make sense to move them into a dedicated crate at some point, but for now just move them to the preexisting crate to unblock other extraction. Closes #12625
22 lines
418 B
TOML
22 lines
418 B
TOML
[package]
|
|
name = "fish-common"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
bitflags.workspace = true
|
|
fish-feature-flags.workspace = true
|
|
fish-widestring.workspace = true
|
|
libc.workspace = true
|
|
nix.workspace = true
|
|
|
|
[build-dependencies]
|
|
fish-build-helper.workspace = true
|
|
rsconf.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|