summaryrefslogtreecommitdiff
path: root/common/Cargo.toml
blob: 1386709ee0617c761b86efa096e03b50f8bb63bc (plain)
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
[package]
name = "common"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0-or-later"
rust-version = "1.63.0"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
# Serialization framework
serde = { version = "1.0.149", features = ["derive"] }
# Serialization helper
serde_with = "2.1.0"
# JSON serialization
serde_json = "1.0.89"
# Url format
url = { version = "2.3.1", features = ["serde"] }
# Crockford’s base32
base32 = "0.4.0"
# Error macros
thiserror = "1.0.37"
# Ini files
rust-ini = "0.18.0"
# Logging
flexi_logger = { version = "0.24.1", default-features = false }
log = "0.4.17"
# Postgres client
postgres = "0.19.4"
# Secure random
rand = { version = "0.8.5", features = ["getrandom"] }
# Securely zero memory
zeroize = "1.5.7"
# Optimized uri binary format
uri-pack = { path = "../uri-pack" }