https://github.com/devolutions/picky-rs
Picky portable PKI implementation and microservice
https://github.com/devolutions/picky-rs
asn1 cryptography der pki rust x509
Last synced: 28 days ago
JSON representation
Picky portable PKI implementation and microservice
- Host: GitHub
- URL: https://github.com/devolutions/picky-rs
- Owner: Devolutions
- License: apache-2.0
- Created: 2019-11-15T20:48:33.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-17T17:41:29.000Z (about 2 months ago)
- Last Synced: 2025-04-07T20:06:17.920Z (about 1 month ago)
- Topics: asn1, cryptography, der, pki, rust, x509
- Language: Rust
- Homepage:
- Size: 3.46 MB
- Stars: 60
- Watchers: 13
- Forks: 29
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE-APACHE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# picky-rs
Collection of crates related to cryptographic primitives, ASN.1 and PKI.
See each folder for individual description.## Release workflow
- Create a new branch
- Make sure dependencies are up to date (`cargo upgrade` from [cargo-edit](https://crates.io/crates/cargo-edit#cargo-upgrade) companion will help)
- Make sure CHANGELOG.md files are up to date
- Open Pull Request for review
- Once CI is green and PR is approved, use [cargo-release](https://github.com/crate-ci/cargo-release) for each crate to release
- `cargo release -rc.` to release a new candidate version (do not finalize changelog)
- `cargo release`, `cargo release patch`, `cargo release minor`, or `cargo release major` as appropriate otherwise. Refer to cargo-release's [reference](https://github.com/crate-ci/cargo-release/blob/master/docs/reference.md)
- Merge PR _using merge_ commit to _preserve commits hash_(TODO: move the last two steps to GitHub Actions)