wyyerd / stripe-rs

Rust API bindings for the Stripe HTTP API.
Apache License 2.0
219 stars 88 forks source link

Replace small to_hex function with lightweight hex crate #209

Closed smailbarkouch closed 2 years ago

smailbarkouch commented 2 years ago

There is a comment here noting that the function should be replaced with a lightweight crate. This hex crate can replace that function, using their encode function.

This function also provides a [decode function] (https://docs.rs/hex/0.4.3/hex/fn.decode.html).

smailbarkouch commented 2 years ago

Closing this since #210 adds the hex crate.