-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
38 lines (32 loc) · 1.16 KB
/
Cargo.toml
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
[package]
name = "lesspass-client"
version = "0.8.0"
authors = ["Óscar García Amor <ogarcia@connectical.com>"]
edition = "2021"
description = "LessPass API server client library and CLI written in Rust"
readme = "README.md"
repository = "https://gitlab.com/ogarcia/lesspass-client"
license = "GPL-3.0-only"
keywords = ["lesspass", "library", "password", "client", "cli"]
categories = ["api-bindings", "command-line-utilities", "web-programming::http-client"]
[lib]
path = "src/lib.rs"
[[bin]]
name = "lesspass-client"
path = "src/main.rs"
required-features = ["default"]
[dependencies]
chrono = { version="~0.4", features = ["serde"] }
log = "~0.4"
reqwest = { version = "~0.12", features = ["json"] }
serde = { version = "~1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
clap = { version = "~4.5", features = ["cargo", "env"], optional = true }
env_logger = { version = "~0.11", optional = true }
lesspass = { version = "~0.4", optional = true }
serde_json = { version = "~1.0", optional = true }
xdg = { version = "~2.5", optional = true }
[dev-dependencies]
mockito = "~1.6"
[features]
default = ["clap", "env_logger", "lesspass", "serde_json", "xdg"]