| 1 | [package] |
| 2 | name = "oversight-tlog" |
| 3 | version.workspace = true |
| 4 | edition.workspace = true |
| 5 | rust-version.workspace = true |
| 6 | license.workspace = true |
| 7 | description = "RFC 6962-compliant Merkle transparency log for Oversight" |
| 8 | |
| 9 | [dependencies] |
| 10 | oversight-crypto = { path = "../oversight-crypto" } |
| 11 | ed25519-dalek.workspace = true |
| 12 | sha2.workspace = true |
| 13 | serde.workspace = true |
| 14 | serde_json.workspace = true |
| 15 | hex.workspace = true |
| 16 | thiserror.workspace = true |
| 17 | serde_jcs.workspace = true |
| 18 | |
| 19 | [dev-dependencies] |
| 20 | tempfile = "3" |