[package] name = "nu_plugin_jwalk" version = "0.12.0" authors = ["Darren Schroeder"] edition = "2021" repository = "https://github.com/fdncred/nu_plugin_jwalk" description = "a nushell plugin called jwalk" license = "MIT" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] # nushell dependencies nu-plugin = "0.100.0" nu-protocol = "0.100.0" nu-path = "0.100.0" # for local development, you can use a path dependency # nu-plugin = { path = "../nushell/crates/nu-plugin", version = "0.98.0" } # nu-protocol = { path = "../nushell/crates/nu-protocol", version = "0.98.0" } # nu-path = { path = "../nushell/crates/nu-path", version = "0.98.0" } jwalk = "0.8.1" chrono = "0.4.38" omnipath = "0.1.6" [dev-dependencies] nu-plugin-test-support = "0.100.0" # nu-plugin-test-support = { path = "../nushell/crates/nu-plugin-test-support" } [profile.release] opt-level = "s" # Optimize for size strip = "debuginfo" lto = "thin" [profile.dev] opt-level = 0