mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-05-14 05:31:14 -03:00
Another step in splitting up the main library crate. Note that this change requires removing the `#[cfg(test)]` annotations around the `LOCAL_OVERRIDE_STACK` code, because otherwise the code would be removed in test builds for other packages, making the `#[cfg(test)]` functions unusable from other packages, and functions with such feature gates in their body would have the code guarded by these gates removed in test builds for tests in other packages. Closes #12494
14 lines
239 B
TOML
14 lines
239 B
TOML
[package]
|
|
name = "fish-feature-flags"
|
|
edition.workspace = true
|
|
rust-version.workspace = true
|
|
version = "0.0.0"
|
|
repository.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
fish-widestring.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|