forked from Dzordzu/rust-apache-age
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
29 lines (26 loc) · 858 Bytes
/
Cargo.toml
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
[package]
name = "apache_age"
description = "Rust driver for the Apache AGE. Based on postgres package"
license = "Apache-2.0"
version = "0.6.0"
edition = "2021"
repository = "https://github.com/dzordzu/rust-apache-age.git"
authors = [ "Tomasz Durda" ]
categories = ["database"]
[package.metadata.docs.rs]
all-features = true
[dependencies]
bytes = "1.1.0"
postgres = { version = "0.19.2" }
postgres-types = { version = "0.2.2", features = ["derive", "with-serde_json-1"] }
serde = { version = "1.0.136", features = ["derive"]}
serde_json = "1.0.79"
tokio-postgres = { version = "0.7.7" }
async-trait = { version = "0.1.53", optional = true }
rand = "0.8.5"
tokio = { version = "1.21.0", optional = true, features = ["macros", "rt-multi-thread"] }
[features]
default = ["sync", "tokio"]
tokio = ["dep:async-trait", "dep:tokio"]
sync = []
serializers = []