[package] name = "keyfork-frame" version = "0.1.0" edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] default = ["async"] async = ["dep:tokio"] [dependencies] # Included in Rust sha2 = "0.10.7" # Personally audited thiserror = "1.0.47" hex = "0.4.3" # Optional, not personally audited tokio = { version = "1.32.0", optional = true, features = ["io-util"] } [dev-dependencies] insta = "1.31.0"