fints-rs 0.1.0

Native Rust FinTS 3.0 PinTan client for German online banking
Documentation
# 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 = "fints-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Native Rust FinTS 3.0 PinTan client for German online banking"
readme = "README.md"
keywords = [
    "fints",
    "hbci",
    "banking",
    "germany",
    "pintan",
]
categories = ["finance"]
license = "MIT"
repository = "https://github.com/floffel/fints"

[features]
cli = [
    "dep:clap",
    "dep:rpassword",
    "dep:comfy-table",
    "dep:csv",
    "dep:tracing-subscriber",
    "dep:flate2",
]
default = []
server = [
    "dep:axum",
    "dep:clap",
    "dep:tracing-subscriber",
]

[lib]
name = "fints"
path = "src/lib.rs"

[[bin]]
name = "fints-client"
path = "src/bin/client.rs"
required-features = ["cli"]

[[bin]]
name = "fints-server"
path = "src/bin/server.rs"
required-features = ["server"]

[[test]]
name = "banks_test"
path = "tests/banks_test.rs"

[[test]]
name = "cross_test"
path = "tests/cross_test.rs"

[[test]]
name = "integration_test"
path = "tests/integration_test.rs"

[[test]]
name = "parser_additional_test"
path = "tests/parser_additional_test.rs"

[[test]]
name = "protocol_additional_test"
path = "tests/protocol_additional_test.rs"

[[test]]
name = "protocol_test"
path = "tests/protocol_test.rs"

[dependencies.axum]
version = "0.8"
optional = true

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"
features = ["serde"]

[dependencies.clap]
version = "4"
features = ["derive"]
optional = true

[dependencies.comfy-table]
version = "7"
optional = true

[dependencies.csv]
version = "1"
optional = true

[dependencies.encoding_rs]
version = "0.8"

[dependencies.flate2]
version = "1"
optional = true

[dependencies.mt940]
version = "1.1"

[dependencies.rand]
version = "0.9"

[dependencies.reqwest]
version = "0.12"
features = ["rustls-tls"]
default-features = false

[dependencies.rpassword]
version = "7"
optional = true

[dependencies.rust_decimal]
version = "1.35"
features = ["serde-with-str"]

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.serde_json]
version = "1.0"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = ["full"]

[dependencies.tracing]
version = "0.1"

[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
optional = true

[dev-dependencies.assert_cmd]
version = "2"

[dev-dependencies.chrono]
version = "0.4"

[dev-dependencies.predicates]
version = "3"

[dev-dependencies.proptest]
version = "1"

[dev-dependencies.tempfile]
version = "3"

[dev-dependencies.tokio]
version = "1"
features = ["full"]