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

20 lines
625 B
TOML
Raw Normal View History

[package]
name = "keyfork-prompt"
2024-08-11 21:31:10 +00:00
version = "0.1.2"
description = "Prompt management utilities for Keyfork"
repository = "https://git.distrust.co/public/keyfork"
edition = "2021"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
2024-01-12 00:49:56 +00:00
default = ["mnemonic"]
mnemonic = ["keyfork-mnemonic"]
[dependencies]
keyfork-bug = { workspace = true }
keyfork-crossterm = { workspace = true, default-features = false, features = ["use-dev-tty", "events", "bracketed-paste"] }
keyfork-mnemonic = { workspace = true, optional = true }
thiserror = { workspace = true }