duoload 0.1.2

Export vocabulary from Duocards
Documentation
[[bin]]
name = "duoload"
path = "src/main.rs"

[[bin]]
name = "fetch_cards"
path = "src/bin/fetch_cards.rs"
required-features = ["debug-tools"]

[dependencies.anyhow]
version = "1.0"

[dependencies.async-trait]
version = "0.1"

[dependencies.base64]
version = "0.22"

[dependencies.clap]
features = ["derive"]
version = "4.5"

[dependencies.genanki-rs]
version = "0.4"

[dependencies.reqwest]
features = ["json"]
version = "0.12"

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

[dependencies.serde_json]
version = "1.0"

[dependencies.tempfile]
version = "3.20"

[dependencies.thiserror]
version = "2.0"

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

[dependencies.uuid]
features = ["v4"]
version = "1.17"

[dev-dependencies.mockito]
version = "1.7"

[dev-dependencies.tokio-test]
version = "0.4"

[features]
debug-tools = []

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

[package]
authors = ["George Shuklin <george.shuklin@gmail.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["command-line-utilities"]
description = "Export vocabulary from Duocards"
edition = "2024"
keywords = ["duocards", "anki"]
license = "MIT"
name = "duoload"
readme = "README.md"
repository = "https://github.com/amarao/duoload"
version = "0.1.2"

[profile.release]
codegen-units = 1
lto = true
opt-level = 3
panic = "abort"
strip = true

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

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

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

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

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

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