Move std-rfc into Nushell (#15042)

Move `std-rfc` into Nushell.  `use std-rfc/<submodule>` now works "out-of-the-box"
This commit is contained in:
Douglas
2025-02-09 09:03:37 -05:00
committed by GitHub
parent bfe398ca36
commit 5b4dd775d4
16 changed files with 1967 additions and 17 deletions

View File

@ -0,0 +1,9 @@
export use conversions *
export use tables *
export use path *
export module clip
export module str
# kv module depends on sqlite feature, which may not be available in some builds
const kv_module = if ("sqlite" in (version).features) { "std-rfc/kv" } else { null }
export use $kv_module *