forked from extern/nushell
Fix the SQLite feature name in version
(#8381)
A tiny fix: make the naming of the `sqlite` feature consistent across both `Cargo.toml` and the `version` command's output. Previously `version` displayed it as `database`, a user was asking about that the other day.
This commit is contained in:
parent
4e78f3649b
commit
878e08cfa4
@ -164,7 +164,7 @@ fn features_enabled() -> Vec<String> {
|
|||||||
|
|
||||||
#[cfg(feature = "sqlite")]
|
#[cfg(feature = "sqlite")]
|
||||||
{
|
{
|
||||||
names.push("database".to_string());
|
names.push("sqlite".to_string());
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(feature = "dataframe")]
|
#[cfg(feature = "dataframe")]
|
||||||
|
Loading…
Reference in New Issue
Block a user