keyfork/crates/util/keyfork-frame/Cargo.toml

25 lines
475 B
TOML

[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 = "0.10.7"
# Personally audited
thiserror = "1.0.47"
# Optional, not personally audited
tokio = { version = "1.32.0", optional = true, features = ["io-util"] }
[dev-dependencies]
insta = "1.31.0"