-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathCargo.toml
47 lines (43 loc) · 1.44 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
42
43
44
45
46
47
[package]
authors = ["Solana Maintainers <[email protected]>"]
edition = "2021"
name = "solana-accountsdb-plugin-postgres"
description = "The Solana AccountsDb plugin for PostgreSQL database."
version = "1.9.4"
repository = "https://github.com/solana-labs/solana"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-validator"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
bs58 = "0.4.0"
chrono = { version = "0.4.11", features = ["serde"] }
crossbeam-channel = "0.5"
log = "0.4.14"
postgres = { version = "0.19.2", features = ["with-chrono-0_4"] }
postgres-types = { version = "0.2.2", features = ["derive"] }
serde = "1.0.133"
serde_derive = "1.0.103"
serde_json = "1.0.74"
solana-accountsdb-plugin-interface = { version = "=1.9.4" }
solana-logger = { version = "=1.9.4" }
solana-measure = { version = "=1.9.4" }
solana-metrics = { version = "=1.9.4" }
solana-runtime = { version = "=1.9.4" }
solana-sdk = { version = "=1.9.4" }
solana-transaction-status = { version = "=1.9.4" }
thiserror = "1.0.30"
tokio-postgres = "0.7.4"
[dev-dependencies]
libc = "0.2.112"
libloading = "0.7.2"
serial_test = "0.5.1"
solana-account-decoder = { version = "=1.9.4" }
solana-core = { version = "=1.9.4" }
solana-local-cluster = { version = "=1.9.4" }
solana-net-utils = { version = "=1.9.4" }
solana-streamer = { version = "=1.9.4" }
tempfile = "3.2.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]