[package] name = "tor-relay-crypto" version = "0.25.0" authors = ["The Tor Project, Inc."] edition = "2021" rust-version = "1.77" license = "MIT OR Apache-2.0" homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home" description = "Cryptography types and helpers for a Tor relay" keywords = ["tor", "arti", "cryptography"] categories = ["cryptography"] repository = "https://gitlab.torproject.org/tpo/core/arti.git/" [features] default = [] full = [ "tor-cert/full", "tor-key-forge/full", "tor-keymgr/full", "tor-error/full", "tor-persist/full", ] [dependencies] derive-deftly = "0.14" derive_more = { version = "1.0.0", features = ["full"] } humantime = "2" tor-cert = { path = "../tor-cert", version = "0.25.0", features = ["encode"] } tor-error = { path = "../tor-error", version = "0.25.0" } tor-key-forge = { path = "../tor-key-forge", version = "0.25.0" } tor-keymgr = { path = "../tor-keymgr", version = "0.25.0" } tor-persist = { path = "../tor-persist", version = "0.25.0" } [dev-dependencies] tor-keymgr = { version = "0.25.0", path = "../tor-keymgr", features = ["testing"] }