-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
48 lines (44 loc) · 1.04 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
39
40
41
42
43
44
45
46
47
48
[workspace]
members = [
"otti-core",
"otti-gen",
"otti-store",
"provider-aegis",
"provider-andotp",
"provider-authpro",
]
resolver = "2"
[workspace.package]
version = "0.2.7"
authors = ["Dominik Nakamura <[email protected]>"]
edition = "2021"
license = "AGPL-3.0-only"
[package]
name = "otti"
publish = false
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
[dependencies]
anyhow = "1.0.79"
arboard = { version = "3.3.0", default-features = false }
clap = { version = "4.4.18", features = ["derive"] }
clap_complete = "4.4.10"
clap_mangen = "0.2.19"
crossbeam-channel = "0.5.11"
crossterm = "0.27.0"
indoc = "2.0.4"
otti-core = { path = "./otti-core" }
otti-gen = { path = "./otti-gen" }
otti-store = { path = "./otti-store" }
provider-aegis = { path = "./provider-aegis" }
provider-andotp = { path = "./provider-andotp" }
provider-authpro = { path = "./provider-authpro" }
ratatui = "0.26.0"
rpassword = "7.3.1"
rprompt = "2.1.1"
secrecy = "0.8.0"
[profile.release]
lto = true
strip = true