keyfork/keyfork-frame/Cargo.toml

26 lines
489 B
TOML
Raw Normal View History

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