jets: rename crypto to lock

This commit is contained in:
Matthew LeVan 2023-10-09 10:00:30 -04:00
parent c3448140b8
commit d24fa43f16
4 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
pub mod bits;
pub mod crypto;
pub mod lock;
pub mod form;
pub mod hash;
pub mod math;
@ -14,8 +14,8 @@ use crate::jets::math::*;
use crate::jets::nock::*;
use crate::jets::text::*;
use crate::jets::tree::*;
use crate::jets::crypto::ed::*;
use crate::jets::crypto::sha::*;
use crate::jets::lock::ed::*;
use crate::jets::lock::sha::*;
use crate::mem::NockStack;
use crate::newt::Newt;
use crate::noun::{self, Noun, Slots};