2023-12-21 17:04:35 +00:00
|
|
|
[package]
|
|
|
|
name = "keyfork-prompt"
|
2024-05-16 04:29:28 +00:00
|
|
|
version = "0.1.1"
|
2024-01-11 05:02:22 +00:00
|
|
|
description = "Prompt management utilities for Keyfork"
|
|
|
|
repository = "https://git.distrust.co/public/keyfork"
|
2023-12-21 17:04:35 +00:00
|
|
|
edition = "2021"
|
2024-01-11 05:02:22 +00:00
|
|
|
license = "MIT"
|
2023-12-21 17:04:35 +00:00
|
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
|
2023-12-22 19:39:25 +00:00
|
|
|
[features]
|
2024-01-12 00:49:56 +00:00
|
|
|
default = ["mnemonic"]
|
2024-08-01 13:50:30 +00:00
|
|
|
mnemonic = ["keyfork-mnemonic"]
|
2023-12-22 19:39:25 +00:00
|
|
|
|
2023-12-21 17:04:35 +00:00
|
|
|
[dependencies]
|
2024-08-11 20:54:06 +00:00
|
|
|
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 }
|