forked from bestarch-ae/cacherpc
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
76 lines (67 loc) · 2.68 KB
/
Copy pathCargo.toml
File metadata and controls
76 lines (67 loc) · 2.68 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "cache-rpc"
version = "0.1.38"
authors = ["Alexander Polakov <a.polakov@iconic.vc>"]
edition = "2018"
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
actix-web = "4.0.0-beta.10"
actix = "0.12"
actix-codec = "0.4"
actix-cors = "0.6.0-beta.3"
actix-http = "3.0.0-beta.11"
tokio = { version = "1.0", features = ["sync", "time", "macros"] }
tokio-util = { version = "0.6", features = ["time"] }
bytes = "1.0"
serde = "1.0"
serde_json = { version = "1.0", features = ["raw_value"] }
awc = { version = "3.0.0-beta.9", features = ["openssl"] }
bs58 = "0.4"
dashmap = "4"
futures-util = "0.3"
stream_generator = "0.1"
tracing = "0.1"
tracing-subscriber = { version = "0.2", features = ["json", "chrono"] }
tracing-appender = { version = "0.1" }
tracing-futures = "0.2"
structopt = "0.3"
base64 = "0.13"
zstd = "0.7"
smallvec = { version = "1.6", features = ["serde", "union"] }
thiserror = "1.0"
anyhow = "1.0"
prometheus = { version = "0.12", default-features = false, features = ["process"] }
once_cell = "1.7"
lru = "0.6"
backoff = "0.2"
signal-hook = "0.1.11"
file-reopen = { git = "https://github.com/polachok/file-reopen.git", rev = "da89261" }
either = "1.6"
humantime = "2.1"
toml = "0.5"
arc-swap = "1.4"
mlua = { version = "0.6", features = ["luajit", "vendored"] }
awc-uds = { version = "0.1.0", git = "https://github.com/polachok/awc-uds.git", rev = "29c9bd2"}
solana-account-decoder = { version = "=1.8.2", optional = true }
solana-sdk = { version = "=1.8.2", optional = true }
solana-program = { version = "=1.8.2", optional = true }
spl-token-v2-0 = { package = "spl-token", version = "=3.2.0", features = ["no-entrypoint"], optional = true}
[dev-dependencies]
proptest = "1"
criterion = "0.3"
rand = "0.8"
[[bench]]
name = "filters_bench"
harness = false
[patch.crates-io]
solana-account-decoder = { git = "https://github.com/polachok/solana", rev = "ec4e167b00b2fd3799b935bb7ca49775f6a4b63e" }
solana-sdk = { git = "https://github.com/polachok/solana", rev = "ec4e167b00b2fd3799b935bb7ca49775f6a4b63e" }
solana-program = { git = "https://github.com/polachok/solana", rev = "ec4e167b00b2fd3799b935bb7ca49775f6a4b63e" }
actix-tls = { version = "3.0.0-beta.7", git = "https://github.com/zubr-exchange/actix-net", rev = "aa7c6db84e1748ba1301a5b9cffc16ebd4f3626e" }
#[patch.crates-io]
#actix-http = { git = "https://github.com/polachok/actix-web", rev = "19cd7fdbd5b79e9d78c8cb562741d7513d980b18" }
#actix = { git = "https://github.com/polachok/actix", rev = "58e5309310cccd38ce9b75141547a67610454759" }
[features]
default = ["jsonparsed"]
jsonparsed = ["solana-account-decoder", "solana-sdk", "solana-program", "spl-token-v2-0"]