docs.rs failed to build ur-parse-lib-1.0.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: ur-parse-lib-1.0.8

ur-parse-lib

ur-parse-lib provides convenience helpers to encode and decode UR payloads using keystone-ur and ur-registry.

It is intended for SDK integrations that need a simpler API surface on top of registry objects and UR transport strings.

Installation

[dependencies]
ur-parse-lib = "1.0.0"

If you manually depend on ur-registry in the same project with default-features = false, ensure the core feature is enabled to keep error types compatible:

ur-registry = { version = "1.0.0", default-features = false, features = ["core"] }

What It Provides

  • UR encoder helpers
  • UR decoder helpers
  • Conversion utilities between raw bytes and UR strings

Example

// See crate source for encoder/decoder entry points:
// - keystone_ur_encoder
// - keystone_ur_decoder

License

MIT