Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ permissions:
contents: read

env:
RUST_TOOLCHAIN: '1.77.1'
RUST_TOOLCHAIN: '1.94.0'
RUST_TOOLCHAIN_RUSTFMT: nightly
RUST_TOOLCHAIN_RUSTDOC: nightly
CARGO_TERM_COLOR: always
Expand Down
254 changes: 249 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 8 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
name = "nid"
version = "3.0.0"
edition = "2021"
rust-version = "1.61"
description = "Generate and parse Nano IDs"
repository = "https://github.com/ciffelia/nid"
license = "MIT OR Apache-2.0"
Expand All @@ -19,7 +18,15 @@ thiserror = "1.0"
serde = { version = "1.0", optional = true }
rand = "0.8.5"
zeroize = { version = "1.7", features = ["zeroize_derive"], optional = true }
rkyv = { version = "0.8", optional = true }

[dev-dependencies]
serde_json = "1.0"
pretty_assertions = "1.4"

[features]
packed = []
rkyv = ["dep:rkyv"]

[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(doc_auto_cfg)'] }
Loading