[package] name = "istziio-client" version = "0.2.4" edition = "2018" authors = ["Shuning Lin <86640627+ScottLinnn@users.noreply.github.com>", "J-HowHuang "] description = "Client application for ISTZIIO OLAP database I/O cache service" license-file = "LICENSE" homepage = "https://github.com/cmu-db/15721-s24-cache2" repository = "https://github.com/cmu-db/15721-s24-cache2" documentation = "https://github.com/cmu-db/15721-s24-cache2/blob/main/README.md" readme = "README.md" include = [ "src/client_api.rs", "src/storage_client.rs", "src/lib.rs", "src/benchmark.rs" ] # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tokio = { version = "1", features = ["full"] } clap = "3" anyhow = "1.0" parquet = "50.0.0" arrow = "50.0.0" log = "0.4" thiserror = "1.0" env_logger = "0.11.1" async-trait = "0.1" rocket = { version = "0.5.0", features = ["json"] } reqwest = { version = "0.11", features = ["stream", "json"] } [[bin]] name = "benchmark" path = "src/benchmark.rs"