1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97
|
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.
[package]
edition = "2024"
name = "ripasso-cursive"
version = "0.8.0"
authors = [
"Joakim Lundborg <joakim.lundborg@gmail.com>",
"Alexander Kjäll <alexander.kjall@gmail.com>",
]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A password manager that uses the file format of the standard unix password manager 'pass', this is the ncurses frontend application"
readme = "README.md"
keywords = [
"password-manager",
"pass",
]
categories = ["command-line-utilities"]
license = "GPL-3.0-only"
repository = "https://github.com/cortex/ripasso/"
[[bin]]
name = "ripasso-cursive"
path = "src/main.rs"
[dependencies.arboard]
version = "3"
features = ["wayland-data-control"]
[dependencies.config]
version = "0.15"
features = ["toml"]
default-features = false
[dependencies.cursive]
version = "0.21"
features = [
"toml",
"crossterm-backend",
]
default-features = false
[dependencies.gettext]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.lazy_static]
version = "1"
[dependencies.locale_config]
version = "0.3"
[dependencies.ripasso]
version = "0.8.0"
[dependencies.terminal_size]
version = "0.4"
[dependencies.unic-langid]
version = "0.9"
[dependencies.zeroize]
version = "1"
features = [
"zeroize_derive",
"alloc",
]
[dev-dependencies.chrono]
version = "0.4"
features = ["clock"]
default-features = false
[dev-dependencies.tempfile]
version = "3.10.1"
[build-dependencies.glob]
version = "0.3"
[build-dependencies.man]
version = "0.3"
|