forked from solana-labs/solana-accountsdb-plugin-postgres
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Cargo.toml
52 lines (47 loc) · 1.6 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
48
49
50
51
52
[package]
authors = ["Solana Maintainers <[email protected]>"]
edition = "2021"
name = "solana-geyser-plugin-postgres"
description = "The Solana AccountsDb plugin for PostgreSQL database."
version = "1.17.3"
repository = "https://github.com/solana-labs/solana-accountsdb-plugin-postgres"
license = "Apache-2.0"
homepage = "https://solana.com/"
documentation = "https://docs.rs/solana-validator"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
bs58 = "0.4.0"
bytemuck = "1.12.1"
chrono = { version = "0.4.24", features = ["serde"] }
crossbeam-channel = "0.5.7"
log = "0.4.17"
openssl = { version = "0.10.42" }
postgres = { version = "0.19.4", features = ["with-chrono-0_4"] }
postgres-types = { version = "0.2.4", features = ["derive"] }
postgres-openssl = { version = "0.5.0"}
serde = "1.0.145"
serde_derive = "1.0.145"
serde_json = "1.0.85"
solana-geyser-plugin-interface = { version = "=1.17.3" }
solana-logger = { version = "1.17.3" }
solana-measure = { version = "1.17.3" }
solana-metrics = { version = "1.17.3" }
solana-runtime = { version = "1.17.3" }
solana-sdk = { version = "1.17.3" }
solana-transaction-status = { version = "1.17.3" }
thiserror = "1.0.37"
tokio-postgres = "0.7.7"
[dev-dependencies]
libc = "0.2.134"
libloading = "0.7.3"
serial_test = "0.9.0"
socket2 = { version = "0.4.7", features = ["all"] }
solana-account-decoder = { version = "1.17.3" }
solana-core = { version = "1.17.3" }
solana-local-cluster = { version = "1.17.3" }
solana-net-utils = { version = "1.17.3" }
solana-streamer = { version = "1.17.3" }
tempfile = "3.3.0"
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]