forked from txpipe/oura
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
63 lines (53 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
53
54
55
56
57
58
59
60
61
62
63
[package]
name = "oura"
description = "The tail of Cardano"
version = "1.1.0"
edition = "2021"
repository = "https://github.com/txpipe/oura"
homepage = "https://github.com/txpipe/oura"
documentation = "https://docs.rs/oura"
license = "Apache-2.0"
readme = "README.md"
authors = [
"Santiago Carmuega <[email protected]>"
]
[dependencies]
pallas = "0.4.0"
#pallas = { path = "../pallas/pallas" }
hex = "0.4.3"
net2 = "0.2.37"
bech32 = "0.8.1"
clap = "3.0.14"
log = "0.4.14"
env_logger = "0.9.0"
crossterm = "0.23"
merge = "0.1.0"
config = { version = "0.11.0", default-features = false, features = ["toml"] }
serde = { version = "1.0.136", features = ["derive"] }
serde_json = "1.0.78"
strum = "0.23"
strum_macros = "0.23"
minicbor = "0.13"
# feature logs
file-rotate = { version = "0.6.0", optional = true }
# feature: webhook
reqwest = { version = "0.11", optional = true, features = ["blocking", "json"] }
# feature: tuisink
tui = { version = "0.17", optional = true, default-features = false, features = ["crossterm"] }
# feature: kafkasink
kafka = { version = "0.8.0", optional = true }
# feature: elasticsink
elasticsearch = { version = "7.14.0-alpha.1", optional = true }
tokio = { version = "1.15.0", optional = true, features = ["rt"] }
# feature: fingerprint
murmur3 = { version = "0.5.1", optional = true }
# required for CI to complete successfully
openssl = { version = "0.10", optional = true, features = ["vendored"] }
[features]
default = []
logs = ["file-rotate"]
webhook = ["reqwest"]
tuisink = ["tui"]
kafkasink = ["kafka", "openssl"]
elasticsink = ["elasticsearch", "tokio"]
fingerprint = ["murmur3"]