[package]
edition = "2021"
name = "keylight"
version = "0.2.0"
authors = ["Keylight <dev@keylight.dev>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Keylight licensing SDK — activate/validate licenses with offline Ed25519 lease verification."
documentation = "https://docs.rs/keylight"
readme = "README.md"
keywords = [
"licensing",
"license",
"ed25519",
"sdk",
"activation",
]
categories = [
"authentication",
"api-bindings",
]
license = "MIT"
repository = "https://github.com/keylight-dev/keylight-rust"
[lib]
name = "keylight"
path = "src/lib.rs"
[[test]]
name = "client_activate"
path = "tests/client_activate.rs"
[[test]]
name = "client_cached_lease"
path = "tests/client_cached_lease.rs"
[[test]]
name = "client_clock"
path = "tests/client_clock.rs"
[[test]]
name = "client_events"
path = "tests/client_events.rs"
[[test]]
name = "client_lifecycle_e2e"
path = "tests/client_lifecycle_e2e.rs"
[[test]]
name = "client_trial"
path = "tests/client_trial.rs"
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "live_integration"
path = "tests/live_integration.rs"
[dependencies.base64]
version = "0.22"
[dependencies.blake3]
version = "1.5"
[dependencies.chacha20poly1305]
version = "0.10"
[dependencies.directories]
version = "5"
[dependencies.ed25519-dalek]
version = "2.1"
[dependencies.rand]
version = "0.8"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "1"
[dependencies.ureq]
version = "2.10"
features = [
"json",
"tls",
]