vibegraph 0.3.28

Reads ethereum contract events from a lightweight RPC and caches them to a database
Documentation
[package]
name = "vibegraph"
version = "0.3.28"
edition = "2021"
default-run = "vibegraph"
description = "Reads ethereum contract events from a lightweight RPC and caches them to a database"
license = "MIT"


# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies] 

serde = { version = "1.0", features = ["derive"] } 
serde_json = "1.0.96"
tokio-postgres-migration = "0.1.0"
tokio-postgres = { version = "0.7.8" ,  features=["with-chrono-0_4"] } 
tokio = { version = "1.28.1", features = ["rt", "rt-multi-thread", "macros"] }




dotenvy = "0.15"
env_logger = "0.10.0"
log = "0.4.18"


ethers = "2.0.10"
thiserror = "1.0.49"
include_dir = "0.7.3"
inquire = "0.6.2"

  degen-sql = "0.2.16" 
 # degen-sql={path="../degen-sql"}

rust_decimal = { version = "1.33.1", features = ["db-tokio-postgres"] }  
url = "2.5.4"
chrono = "0.4.39"


 


# cargo run --bin migrate
[[bin]]
name = "migrate"
path = "src/db/postgres/scripts/migrate.rs"

[[bin]]
name = "rollback_full"
path = "src/db/postgres/scripts/rollback_full.rs"
 
 [[bin]]
name = "add_event_indexers"
path = "src/db/postgres/scripts/add_event_indexers.rs"
 


[[bin]]
name = "vibegraph"
path = "src/main.rs"