
Security News
Crates.io Users Targeted by Phishing Emails
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
iana-registry-data-lib
Advanced tools
A package containing JSON files reflecting the current state of various IANA registries such as the JOSE, OAuth and JWT registries. This package is intended to be used as a data source for other projects.
JSON datasets for IANA registries (OAuth, JOSE, JWT), plus TypeScript entrypoints.
Version 2 introduces a stable, deterministic schema and a new entrypoint.
npm install iana-registry-data-lib
import * as OAuth from 'iana-registry-data-lib';
import type { V2RegistryDataset } from 'iana-registry-data-lib/dist/types.v2';
const oauthParameters: V2RegistryDataset = OAuth.oauth_parameters;
console.log(oauthParameters.entries.length);
Each dataset under dist/registries/<registry>/<dataset>.json
conforms to:
{
"schema_version": 2,
"registry_id": "oauth_registry",
"dataset_id": "oauth_parameters",
"name": "OAuth Parameters",
"metadata": { "datasource_url": "…", "required_specifications": [], "last_updated_iso": "…" },
"entries": [ { "entry_id": "…", "parameter": "…" } ]
}
See MIGRATION.md
for v1 → v2 changes.
MIT
Andy Barlow
FAQs
A package containing JSON files reflecting the current state of various IANA registries such as the JOSE, OAuth and JWT registries. This package is intended to be used as a data source for other projects.
We found that iana-registry-data-lib demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
The Rust Security Response WG is warning of phishing emails from rustfoundation.dev targeting crates.io users.
Product
Socket now lets you customize pull request alert headers, helping security teams share clear guidance right in PRs to speed reviews and reduce back-and-forth.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.