-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
35 lines (29 loc) · 874 Bytes
/
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
[package]
name = "tufa"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["tufa-client", "tufa-server", "tufa-common"]
[dependencies]
tufa-client = { path = "tufa-client", version = "0.1.0" }
tufa-server = { path = "tufa-server", version = "0.1.0" }
tufa-common = { path = "tufa-common", version = "0.1.0" }
# Cli
clap = { version = "4.1.4", features = ["derive"] }
console = "0.15.5"
dialoguer = "0.10.3"
dotenv = "0.15.0"
indicatif = "0.17.3"
anyhow = "1.0.69"
# Client
aes-gcm = "0.10.1"
argon2 = "0.4.1"
base32 = "0.4.0"
diesel = { version = "2.0.3", features = ["sqlite", "returning_clauses_for_sqlite_3_35" ] }
diesel_migrations = "2.0.0"
libsqlite3-sys = { version = "0.25.2", features = ["bundled"] }
hex = "0.4.3"
hmac = "0.12.1"
sha1 = "0.10.5"
#Server