forked from txpipe/oura
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Thomas Bereczky
committed
Feb 12, 2024
1 parent
a35856a
commit 3d12da0
Showing
111 changed files
with
5,860 additions
and
4,451 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "oura" | ||
description = "The tail of Cardano" | ||
version = "2.0.0-alpha.2" | ||
version = "1.8.1" | ||
edition = "2021" | ||
repository = "https://github.com/txpipe/oura" | ||
homepage = "https://github.com/txpipe/oura" | ||
|
@@ -12,22 +12,13 @@ authors = ["Santiago Carmuega <[email protected]>"] | |
|
||
|
||
[dependencies] | ||
# pallas = "0.19.0-alpha.0" | ||
# pallas = { path = "../pallas/pallas" } | ||
pallas = { git = "https://github.com/txpipe/pallas" } | ||
|
||
gasket = { version = "^0.4", features = ["derive"] } | ||
# gasket = { path = "../../construkts/gasket-rs/gasket", features = ["derive"] } | ||
# gasket = { git = "https://github.com/construkts/gasket-rs.git", features = ["derive"] } | ||
|
||
utxorpc-spec-ledger = "1.0.0-alpha.0" | ||
# utxorpc-spec-ledger = { path = "../../utxorpc/spec/ledger/gen/rust" } | ||
# utxorpc-spec-ledger = { git = "https://github.com/utxorpc/spec.git" } | ||
|
||
pallas = { git = "https://github.com/Emurgo/pallas", tag = "conway_2" } | ||
# pallas = { git = "https://github.com/txpipe/pallas" } | ||
# pallas = { path = "../../pallas/pallas" } | ||
hex = "0.4.3" | ||
net2 = "0.2.37" | ||
bech32 = "0.9.1" | ||
clap = { version = "4.2.7", features = ["derive"] } | ||
clap = "3.2.22" | ||
log = "0.4.17" | ||
env_logger = "0.10.0" | ||
crossterm = "0.25" | ||
|
@@ -38,20 +29,17 @@ config = { version = "0.13.2", default-features = false, features = [ | |
"json", | ||
] } | ||
serde = { version = "1.0.152", features = ["derive"] } | ||
serde_json = { version = "1.0.89" } | ||
serde_json = { version = "1.0.89", features = ["arbitrary_precision"] } | ||
strum = "0.24" | ||
strum_macros = "0.24" | ||
prometheus_exporter = { version = "0.8.5", default-features = false } | ||
unicode-truncate = "0.2.0" | ||
thiserror = "1.0.39" | ||
indicatif = "0.17.3" | ||
lazy_static = "1.4.0" | ||
tracing = "0.1.37" | ||
tracing-subscriber = "0.3.17" | ||
file-rotate = "0.7.1" | ||
tokio = { version = "1", features = ["rt"] } | ||
async-trait = "0.1.68" | ||
reqwest = { version = "0.11", features = ["json"] } | ||
|
||
# feature logs | ||
file-rotate = { version = "0.7.1", optional = true } | ||
|
||
# feature: webhook | ||
reqwest = { version = "0.11", optional = true, features = ["blocking", "json"] } | ||
|
||
# feature: kafkasink | ||
kafka = { version = "0.8.0", optional = true } | ||
|
@@ -68,11 +56,14 @@ aws-sdk-sqs = { version = "0.14.0", optional = true } | |
aws-sdk-lambda = { version = "0.14.0", optional = true } | ||
aws-sdk-s3 = { version = "0.14.0", optional = true } | ||
|
||
# features: elasticsearch || aws | ||
tokio = { version = "1.24.2", optional = true, features = ["rt"] } | ||
|
||
# required for CI to complete successfully | ||
openssl = { version = "0.10", optional = true, features = ["vendored"] } | ||
|
||
# redis support | ||
redis = { version = "0.23.0", optional = true, features = ["tokio-comp"] } | ||
redis = { version = "0.21.6", optional = true, features = ["tokio-comp"] } | ||
|
||
# features: gcp | ||
google-cloud-pubsub = { version = "0.12.0", optional = true } | ||
|
@@ -81,11 +72,15 @@ google-cloud-googleapis = { version = "0.7.0", optional = true } | |
# features: rabbitmqsink | ||
lapin = { version = "2.1.1", optional = true } | ||
|
||
# features: deno | ||
deno_core = { version = "0.175.0", optional = true } | ||
serde_v8 = { version = "0.86.0", optional = true } | ||
deno_runtime = { version = "0.101.0", optional = true } | ||
|
||
[features] | ||
default = ["deno"] | ||
deno = ["deno_core", "deno_runtime", "serde_v8"] | ||
default = [] | ||
web = ["reqwest"] | ||
logs = ["file-rotate"] | ||
webhook = ["web"] | ||
kafkasink = ["kafka", "openssl"] | ||
elasticsink = ["elasticsearch", "tokio"] | ||
fingerprint = ["murmur3"] | ||
aws = ["aws-config", "aws-sdk-sqs", "aws-sdk-lambda", "aws-sdk-s3", "tokio"] | ||
redissink = ["redis", "tokio"] | ||
gcp = ["google-cloud-pubsub", "google-cloud-googleapis", "tokio", "web"] | ||
rabbitmqsink = ["lapin", "tokio"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.