[package]
name = "keyfork-frame"
version = "0.1.0"
edition = "2021"
license = "MIT"

# 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 = { workspace = true }

# Personally audited
thiserror = { workspace = true }

# Optional, not personally audited
tokio = { workspace = true, optional = true, features = ["io-util"] }

[dev-dependencies]
insta = "1.31.0"