v1.0.0-rc.1

key sources (keydb/online/mapfile), overflow-safe LBA
This commit is contained in:
Matthew Jackson
2026-06-21 21:06:07 -07:00
parent a4e8fbe06c
commit 3957ac70c1
4 changed files with 287 additions and 10 deletions
+6 -2
View File
@@ -1,7 +1,8 @@
[package]
name = "freemkv-keysources"
version = "0.31.0"
version = "1.0.0-rc.1"
edition = "2024"
rust-version = "1.86"
license = "AGPL-3.0-only"
description = "Pluggable AACS key sources (keydb, online key service, mapfile) for libfreemkv. Each source looks a disc up and hands libfreemkv a Key; the library does all derivation."
repository = "https://github.com/freemkv/freemkv-keysources"
@@ -10,11 +11,14 @@ categories = ["multimedia"]
[dependencies]
# The crate provides the `KeySource` trait + `Key`/`DiscInputs` types these impls fill.
libfreemkv = "0.31"
libfreemkv = "1.0.0-rc.1"
# OnlineSource: POST disc inputs + samples to a key service over HTTP.
ureq = { version = "2", features = ["json"] }
serde_json = "1"
base64 = "0.22"
# Structural begin/end logging around the keyserver round-trip (never logs
# key material).
tracing = "0.1"
[profile.release]
lto = "thin"