[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.188", features = ["derive"] } # Serialization helper serde_with = "3.3.0" # JSON serialization serde_json = "1.0.107" # Url format url = { version = "2.4.1", features = ["serde"] } # Crockford’s base32 base32 = "0.4.0" # Error macros thiserror = "1.0.49" # Ini files rust-ini = "0.19.0" # Logging flexi_logger = { version = "0.27.2", default-features = false } log = "0.4.20" # Postgres client postgres = "0.19.7" # Secure random rand = { version = "0.8.5", features = ["getrandom"] } # Securely zero memory zeroize = "1.6.0" # Optimized uri binary format uri-pack = { path = "../uri-pack" } # Exponential backoff generator exponential-backoff = "1.2.0"