[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" }