# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "bitpanda-csv" version = "0.2.1" authors = ["Christian Visintin "] include = [ "src/**/*", "LICENSE", "README.md", "CHANGELOG.md", ] description = "A Rust library to parse the Bitpanda trades exported as CSV from your trades history" homepage = "https://github.com/veeso/bitpanda-csv" documentation = "https://docs.rs/bitpanda-csv" readme = "README.md" keywords = [ "bitpanda", "bitpanda-trades", "bitpanda-csv", ] categories = [ "parser-implementations", "parsing", ] license = "MIT" repository = "https://github.com/veeso/bitpanda-csv" [dependencies.chrono] version = "^0.4" features = ["serde"] [dependencies.csv] version = "^1.1" optional = true [dependencies.csv-async] version = "^1.2" features = ["tokio"] optional = true [dependencies.futures] version = "^0.3" optional = true [dependencies.log] version = "^0.4" [dependencies.rust_decimal] version = "^1.26" [dependencies.rust_decimal_macros] version = "^1.26" optional = true [dependencies.serde] version = "^1.0" features = ["derive"] [dependencies.tempfile] version = "^3.3" [dependencies.tokio] version = "1.28" features = [ "io-std", "io-util", ] optional = true default-features = false [dependencies.uuid] version = "^1.1" features = ["v4"] optional = true [dev-dependencies.pretty_assertions] version = "^1.2.1" [dev-dependencies.rust_decimal_macros] version = "^1.26" [dev-dependencies.tokio] version = "1.28" features = ["full"] [features] async = [ "csv-async", "futures", "tokio", ] default = ["sync"] mock = [ "uuid", "rust_decimal_macros", ] sync = ["csv"]