[package]
edition = "2024"
name = "trustime"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A client implementation of the Trustime trusted timestamp service protocol"
readme = "README.md"
keywords = [
"time",
"timestamp",
]
categories = [
"date-and-time",
"network-programming",
]
license = "MIT"
[lib]
name = "trustime"
path = "src/lib.rs"
[dependencies.base64]
version = "0.22"
[dependencies.p256]
version = "0.13"
features = ["ecdsa"]
[dependencies.rand]
version = "0.9"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"blocking",
]
[dependencies.serde]
version = "1"
features = ["derive"]