-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathCargo.toml
41 lines (37 loc) · 1.08 KB
/
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
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "indradb-postgres"
version = "0.1.0"
authors = ["Yusuf Simonson <[email protected]>"]
description = "A postgres-backed datastore for IndraDB"
homepage = "https://indradb.github.io"
repository = "https://github.com/indradb/postgres"
keywords = ["graph", "database"]
categories = ["database", "database-implementations"]
license = "MPL-2.0"
[badges]
travis-ci = { repository = "indradb/postgres", branch = "master" }
[lib]
name = "indradb_postgres"
path = "src/lib.rs"
[features]
default = []
test-suite = ["indradb-lib/test-suite"]
bench-suite = ["indradb-lib/bench-suite"]
[dependencies]
error-chain = "~0.11.0"
postgres = { version = "0.15", features = ["with-serde_json", "with-chrono", "with-uuid"] }
r2d2 = "0.8"
r2d2_postgres = "0.14"
num_cpus = "^1.8.0"
rust-crypto = "~0.2.36"
serde = "^1.0.27"
serde_json = "^1.0.9"
serde_derive = "^1.0.27"
libc = "0.2.26"
rand = "~0.4.2"
regex = "~0.2.5"
lazy_static = "^1.0.0"
byteorder = "^1.2.1"
chrono = { version = "0.4.0", features = ["serde"] }
uuid = { version = ">=0.5,<0.6", features = ["serde", "v1"] }
indradb-lib = "^0.15.0"