Ran cargo fmt & added empty file for generated Bindings

This commit is contained in:
Erdem Yerebasmaz
2024-04-29 17:25:11 +03:00
parent 811f99f348
commit c54e61ba2a
3 changed files with 10 additions and 9 deletions

10
lib/Cargo.lock generated
View File

@@ -883,9 +883,9 @@ checksum = "9fc0510504f03c51ada170672ac806f1f105a88aa97a5281117e1ddc3368e51a"
[[package]]
name = "flate2"
version = "1.0.29"
version = "1.0.30"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "4556222738635b7a3417ae6130d8f52201e45a0c4d1a907f0826383adb5f85e7"
checksum = "5f54427cfd1c7829e2a139fcefea601bf088ebca651d2bf53ebc600eac295dae"
dependencies = [
"crc32fast",
"miniz_oxide",
@@ -1112,9 +1112,9 @@ dependencies = [
[[package]]
name = "goblin"
version = "0.8.1"
version = "0.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8ce2dfb858618fd40cafc83efadd02705adf6ffba765098736bd950c3c945fe0"
checksum = "1b363a30c165f666402fe6a3024d3bec7ebc898f96a4a23bd1c99f8dbf3f4f47"
dependencies = [
"log",
"plain",
@@ -2918,7 +2918,7 @@ dependencies = [
"clap 4.5.4",
"fs-err",
"glob",
"goblin 0.8.1",
"goblin 0.8.2",
"heck 0.4.1",
"once_cell",
"paste",

View File

@@ -0,0 +1 @@

View File

@@ -1,8 +1,8 @@
#[cfg(feature = "frb")]
pub mod bindings;
pub(crate) mod error;
pub mod error;
#[cfg(feature = "frb")]
pub mod frb;
pub(crate) mod model;
pub(crate) mod persist;
pub(crate) mod wallet;
pub mod model;
pub mod persist;
pub mod wallet;