taler-rust

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

README.md (1251B)


      1 # Taler Rust
      2 
      3 GNU Taler utils in Rust and some third parties adapters.
      4 
      5 ## Adapters
      6 
      7 ### taler-magnet-bank
      8 
      9 GNU Taler adapter for the [Magnet Bank](https://www.magnetbank.hu/) API. Support
     10 the [Taler Wire Gateway API](https://docs.taler.net/core/api-bank-wire.html) and
     11 the [Taler Bank Revenue API](https://docs.taler.net/core/api-bank-revenue.html).
     12 
     13 Setup documentation can be found [here](https://docs.taler.net/taler-magnet-bank-manual.html).
     14 
     15 ### taler-cyclos
     16 
     17 GNU Taler adapter for the [Cyclos](https://www.cyclos.org/) API. Support
     18 the [Taler Wire Gateway API](https://docs.taler.net/core/api-bank-wire.html) and
     19 the [Taler Bank Revenue API](https://docs.taler.net/core/api-bank-revenue.html).
     20 
     21 Setup documentation can be found [here](https://docs.taler.net/taler-cyclos-manual.html).
     22 
     23 ## Project structure
     24 
     25 - **taler-magnet-bank**: Magnet Bank adapter.
     26 - **taler-cyclos**: Cyclos network adapter.
     27 - **common**: Rust GNU Taler libraries
     28     - **failure-injection**: Test utils to test failures paths
     29     - **taler-api**: GNU Taler API implementation
     30     - **taler-build**: GNU Taler build time constants
     31     - **taler-common**: GNU Taler component logic and types
     32     - **taler-test-utils**: Test utils for GNU Taler adapter written in Rust GNU