-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathCargo.toml
More file actions
49 lines (46 loc) · 1.4 KB
/
Cargo.toml
File metadata and controls
49 lines (46 loc) · 1.4 KB
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
42
43
44
45
46
47
48
49
[package]
name = "graph-store-postgres"
version.workspace = true
edition.workspace = true
[dependencies]
async-trait = { workspace = true }
blake3 = "1.8"
chrono = { workspace = true }
deadpool = { workspace = true }
derive_more = { workspace = true, features = ["full"] }
diesel = { workspace = true }
diesel-async = { workspace = true }
diesel-dynamic-schema = { workspace = true }
diesel-derive-enum = { workspace = true }
diesel_derives = { workspace = true }
diesel_migrations = { workspace = true }
fallible-iterator = "0.3.0"
graph = { path = "../../graph" }
graphman-store = { workspace = true }
Inflector = { workspace = true }
lazy_static = { workspace = true }
lru_time_cache = "0.11"
postgres = "0.19.1"
openssl = { version = "0.10.76", features = ["vendored"] }
postgres-openssl = "0.5.2"
tokio-postgres = "0.7"
rand.workspace = true
serde = { workspace = true }
serde_json = { workspace = true }
stable-hash_legacy = { git = "https://github.com/graphprotocol/stable-hash", branch = "old", package = "stable-hash" }
tokio = { workspace = true }
tokio-stream = { workspace = true }
anyhow = "1.0.102"
git-testament = { workspace = true }
itertools = "0.14.0"
hex = "0.4.3"
pretty_assertions = "1.4.1"
sqlparser = { workspace = true }
thiserror = { workspace = true }
serde_yaml.workspace = true
arrow = { workspace = true }
parquet = { workspace = true }
[dev-dependencies]
clap.workspace = true
[lints]
workspace = true