From ad051d32cda620d15613142ddc2686630f995cd0 Mon Sep 17 00:00:00 2001 From: Someone Else Date: Wed, 8 Feb 2023 23:29:38 +0100 Subject: [PATCH] Update readme.md --- readme.md | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 5d64236e..14f7beac 100644 --- a/readme.md +++ b/readme.md @@ -36,13 +36,23 @@ I encourage anyone to review the work being done, discuss about it or propose ag For non-developers people, it is time for you to unleash your ideas. -### Code & Repo +### Code, Repository & Dependencies -No unsafe code is permitted, and the codebase will never contain `.except()` or `panic!()`. We discourage the use +No unsafe code is permitted in the project, and the codebase will never contain `.except()` or `panic!()`. We discourage the use of `.unwrap()`, as it implied that all errors are correctly handled. -For the moment I try to organize the repository like the official one. But it won't last for long. +The organization of the repository is at the moment arbritrary. The blockchain database components can be found under the blockchain_db member. +
+Dependencies + +| Dependencies | Reason | +|----------------|-----------| +| monero-rs | Used to define monero's type and serialize/deserialize data. +| serde | serialize/deserialize support. +| thiserror | used to Derive(Error) in the codebase. + +
### Improvements & Features