[package] name = "optics-base" version = "0.1.0" authors = ["James Prestwich "] edition = "2018" [dependencies] # Main block tokio = { version = "1.0.1", features = ["rt", "macros"] } config = "0.10" serde = { version = "1.0", features = ["derive"] } serde_json = { version = "1.0", default-features = false } ethers = { git = "https://github.com/gakonst/ethers-rs", features = ["abigen"] } thiserror = { version = "1.0.22", default-features = false } async-trait = { version = "0.1.42", default-features = false } futures-util = "0.3.12" color-eyre = "0.5.0" tracing = "0.1.22" tracing-futures = "0.2.4" tracing-subscriber = "0.2.15" rocksdb = { git = "https://github.com/rust-rocksdb/rust-rocksdb" } optics-core = { path = "../optics-core" } optics-ethereum = { path = "../optics-ethereum"} optics-test = { path = "../optics-test" } [[example]] name = "example" path = "./bin/example.rs"