[package]
edition = "2024"
rust-version = "1.89.0"
name = "nu_plugin_nw_ulid"
version = "0.2.0"
authors = ["John Ky <newhoggy@gmail.com>"]
build = false
exclude = [
".github/",
".git/",
"target/",
"*.swp",
"*.swo",
".DS_Store",
"test_data/",
"scripts/",
".env*",
"*.log",
]
include = [
"src/**/*",
"docs/**/*",
"README.md",
"LICENSE",
"CHANGELOG.md",
"Cargo.toml",
"benches/**/*",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Production-grade ULID (Universally Unique Lexicographically Sortable Identifier) utilities plugin for Nushell with cryptographically secure operations, enterprise-grade security, and streaming support"
homepage = "https://github.com/nushell-works/nu_plugin_nw_ulid"
documentation = "https://docs.rs/nu_plugin_nw_ulid"
readme = "README.md"
keywords = [
"nushell",
"ulid",
"identifier",
"plugin",
]
categories = [
"command-line-utilities",
"development-tools",
"cryptography",
"data-structures",
]
license = "BSD-3-Clause"
repository = "https://github.com/nushell-works/nu_plugin_nw_ulid"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[badges.maintenance]
status = "actively-developed"
[lib]
name = "nu_plugin_nw_ulid"
path = "src/lib.rs"
[[bin]]
name = "nu_plugin_nw_ulid"
path = "src/main.rs"
[[bench]]
name = "performance_benchmarks"
path = "benches/performance_benchmarks.rs"
harness = false
[dependencies.base32]
version = "0.5.1"
[dependencies.base64]
version = "0.22.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.hex]
version = "0.4.3"
[dependencies.nu-plugin]
version = "0.111.0"
[dependencies.nu-protocol]
version = "0.111.0"
[dependencies.rand]
version = "0.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.ulid]
version = "1.1"
features = ["serde"]
[dev-dependencies.criterion]
version = "0.8"
features = ["html_reports"]
[dev-dependencies.nu-test-support]
version = "0.111.0"
[profile.release]
lto = true
codegen-units = 1
panic = "abort"
strip = true