[package] name = "database-actor" version = "0.1.0" authors = ["Adrian Wozniak "] edition = "2018" description = "BITQUE (Simplified JIRA in Rust) shared data types" repository = "https://gitlab.com/adrian.wozniak/bitque" license = "MPL-2.0" #license-file = "../LICENSE" [lib] name = "database_actor" path = "./src/lib.rs" [dependencies] actix = { version = "0.13.0" } bigdecimal = { version = "0.3.0" } bincode = { version = "*" } bitflags = { version = "2.0.2" } bitque-config = { workspace = true, features = ["database"] } bitque-data = { workspace = true, features = ["backend"] } byteorder = { version = "1.0" } chrono = { version = "0.4", features = ["serde"] } derive_db_execute = { workspace = true } diesel = { version = "2.0.3", features = ["postgres", "numeric", "uuid", "r2d2", "chrono"] } dotenv = { version = "*" } futures = { version = "0.3.8" } ipnetwork = { version = "0.20.0" } libc = { version = "0.2.0", default-features = false } num-bigint = { version = "0.4.3" } num-integer = { version = "0.1.32" } num-traits = { version = "0.2" } openssl-sys = { version = "*", features = ["vendored"] } percent-encoding = { version = "2.1.0" } pq-sys = { version = ">=0.3.0, <0.5.0" } r2d2 = { version = ">= 0.8, < 0.9" } serde = { version = "*" } time = { version = "0.3.20" } toml = { version = "*" } tracing = { version = "0.1.37" } url = { version = "2.1.0" } uuid = { version = "1.3.0", features = ["serde", "v4", "v5"] }