Add alonzo lib to wrapper crate

This commit is contained in:
Santiago Carmuega 2021-11-25 22:11:24 -03:00
parent b82c9f6a60
commit f33e789d35
3 changed files with 7 additions and 1 deletions

View file

@ -16,4 +16,5 @@ pallas-machines = { path = "../pallas-machines/" }
pallas-handshake = { path = "../pallas-handshake/" }
pallas-chainsync = { path = "../pallas-chainsync/" }
pallas-blockfetch = { path = "../pallas-blockfetch/" }
pallas-txsubmission = { path = "../pallas-txsubmission/" }
pallas-txsubmission = { path = "../pallas-txsubmission/" }
pallas-alonzo = { path = "../pallas-alonzo/" }

3
pallas/src/ledger/mod.rs Normal file
View file

@ -0,0 +1,3 @@
#[doc(inline)]
pub use pallas_alonzo as alonzo;

View file

@ -10,3 +10,5 @@
#![warn(missing_doc_code_examples)]
pub mod ouroboros;
pub mod ledger;