-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (23 loc) · 721 Bytes
/
Cargo.toml
File metadata and controls
27 lines (23 loc) · 721 Bytes
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
[package]
name = "onepassword-cli"
version = "0.3.4"
authors = ["sinyo-matu <seelerei0130@gmail.com>"]
edition = "2018"
license = "MIT"
description = "a wrapper for 1password-cli, which focus on easy-to-use"
categories = ["api-bindings","development-tools"]
keywords = ["cli","1password","wrapper"]
repository = "https://github.com/sinyo-matu/onepassword-cli"
readme = "README.md"
[dependencies]
tokio={version="1.0.0",features=["process","io-util","io-std"]}
chrono= "0.4"
serde={version="1.0",features = ["derive"]}
serde_json="1.0"
async-trait = "0.1.48"
[dev-dependencies]
dotenv = "0.15.0"
tokio = { version = "1.3.0", features = ["full"] }
[[example]]
name="get_account_info"
path="examples/get_account_info.rs"