master

Master Thesis code
git clone git://popovic.xyz/master.git
Log | Files | Refs | README | LICENSE

Cargo.toml (505B)


      1 [package]
      2 name = "block_extractor"
      3 version = "0.1.0"
      4 edition = "2021"
      5 
      6 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
      7 
      8 [dependencies]
      9 anyhow = "1.0.95"
     10 alloy = { version = "0.9.2", features = ["full"] }
     11 tokio = { version = "1.43.0", features = ["full"] }
     12 csv = "1.3.1"
     13 indicatif = "0.17.9"
     14 futures = "0.3.31"
     15 log = "0.4.25"
     16 env_logger = "0.11.6"
     17 dotenv = "0.15.0"
     18 parquet = "54.0.0"
     19 arrow = "54.0.0"
     20 
     21 [lib]
     22 name = "block_extractor_rs"
     23 path = "src/lib.rs"