[package] name = "dojo-orm" description = "A simple ORM for Rust" license = "MIT" version = "0.2.2" edition = "2021" repository = "https://github.com/tokenspan/dojo" homepage = "https://github.com/tokenspan/dojo" [dependencies] async-graphql = { version = "7.0.0", features = [] } base64ct = { version = "1.6.0", features = ["alloc"] } postgres-types = { version = "0.2.6", features = ["derive", "with-serde_json-1"] } postgres-openssl = "0.5.0" tokio = { version = "1.35.1", features = ["full"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0.108" bb8 = "0.8.1" bb8-postgres = "0.8.1" anyhow = "1.0.79" refinery = { version = "0.8.11", features = ["tokio-postgres"] } uuid = { version = "1.6.1", features = ["v4", "fast-rng", "macro-diagnostics", "serde"] } chrono = { version = "0.4.19", features = ["serde"] } bytes = "1.5.0" async-trait = "0.1.75" tracing = "0.1" tracing-subscriber = "0.3" bincode = "1.3.3" strum = { version = "0.25", features = ["derive"] } typed-builder = "0.18.0" futures = "0.3" futures-util = "0.3.30" [dependencies.tokio-postgres] version = "0.7.2" features = [ "with-chrono-0_4", "with-uuid-1", "array-impls" ] [dev-dependencies] dojo-macros = { path = "../dojo-macros" } googletest = "0.11.0" rstest = "0.18.2" testcontainers-modules = { version = "0.3.0", features = ["postgres"] }