taler-rust

GNU Taler code in Rust. Largely core banking integrations.
Log | Files | Refs | Submodules | README | LICENSE

Cargo.toml (1043B)


      1 [package]
      2 name = "taler-magnet-bank"
      3 version.workspace = true
      4 description = "Taler Magnet Bank adapter"
      5 edition.workspace = true
      6 authors.workspace = true
      7 homepage.workspace = true
      8 repository.workspace = true
      9 license-file.workspace = true
     10 
     11 [dependencies]
     12 form_urlencoded = "1.2"
     13 percent-encoding = "2.3"
     14 rpassword = "7.4"
     15 getrandom = "0.4.1"
     16 sqlx.workspace = true
     17 serde_json = { workspace = true, features = ["raw_value"] }
     18 jiff = { workspace = true, features = ["serde"] }
     19 taler-common.workspace = true
     20 taler-api.workspace = true
     21 taler-build.workspace = true
     22 http-client.workspace = true
     23 clap.workspace = true
     24 serde.workspace = true
     25 serde_with.workspace = true
     26 serde_path_to_error.workspace = true
     27 serde_urlencoded.workspace = true
     28 thiserror.workspace = true
     29 tracing.workspace = true
     30 tokio.workspace = true
     31 anyhow.workspace = true
     32 base64.workspace = true
     33 owo-colors.workspace = true
     34 failure-injection.workspace = true
     35 hyper.workspace = true
     36 url.workspace = true
     37 aws-lc-rs.workspace = true
     38 
     39 [dev-dependencies]
     40 taler-test-utils.workspace = true