taler-rust

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

Cargo.toml (1066B)


      1 [package]
      2 name = "taler-common"
      3 version.workspace = true
      4 edition.workspace = true
      5 rust-version.workspace = true
      6 authors.workspace = true
      7 homepage.workspace = true
      8 repository.workspace = true
      9 license-file.workspace = true
     10 
     11 [lib]
     12 doctest = false
     13 
     14 [dependencies]
     15 mimalloc = "0.1"
     16 glob = "0.3"
     17 indexmap = "2.7"
     18 tempfile.workspace = true
     19 jiff.workspace = true
     20 serde.workspace = true
     21 serde_json = { workspace = true, features = ["raw_value"] }
     22 serde_path_to_error.workspace = true
     23 serde_with.workspace = true
     24 serde_urlencoded.workspace = true
     25 url.workspace = true
     26 thiserror.workspace = true
     27 rand.workspace = true
     28 tracing.workspace = true
     29 clap.workspace = true
     30 anyhow.workspace = true
     31 tracing-subscriber.workspace = true
     32 tokio = { workspace = true, features = ["rt-multi-thread"] }
     33 sqlx = { workspace = true, features = ["macros"] }
     34 compact_str.workspace = true
     35 aws-lc-rs.workspace = true
     36 regex.workspace = true
     37 taler-macros.workspace = true
     38 
     39 [dev-dependencies]
     40 criterion.workspace = true
     41 
     42 [[bench]]
     43 name = "base32"
     44 harness = false
     45 
     46 [[bench]]
     47 name = "iban"
     48 harness = false