-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Removed all the dead code. #153
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -102,26 +102,6 @@ pub mod Ids { | |
const REVER_STRING: &str = "(?P<ident>[A-Z]{4})(?P<major>[0-9a-f])(?P<minor>[0-9a-f])(?P<kind>[A-Z]{4})(?P<size>[0-9a-f]{6})_"; | ||
const IDENTS: &[&str] = &[Identage::ACDC, Identage::KERI]; | ||
const SERIALS: &[&str] = &[Serialage::JSON]; | ||
const ILKS: &[&str] = &[ | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I believe I use these externally There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I may be wrong though, I may just use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh I wasn't aware that this library was in use yet. Is it consumed in one of the public WebOfTrust tools or in a private project? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It's consumed by my company, Qui Identity. I have a KERI/ACDC implementation in Rust in a library we make use of. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Just checked, I do only use Ilkage:
|
||
Ilkage::icp, | ||
Ilkage::rot, | ||
Ilkage::ixn, | ||
Ilkage::dip, | ||
Ilkage::drt, | ||
Ilkage::rct, | ||
Ilkage::ksn, | ||
Ilkage::qry, | ||
Ilkage::rpy, | ||
Ilkage::exn, | ||
Ilkage::pro, | ||
Ilkage::bar, | ||
Ilkage::vcp, | ||
Ilkage::vrt, | ||
Ilkage::iss, | ||
Ilkage::rev, | ||
Ilkage::bis, | ||
Ilkage::brv, | ||
]; | ||
|
||
pub(crate) const DUMMY: u8 = b'#'; | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
// TODO: remove before 1.0.0 | ||
#![allow(dead_code)] | ||
#![deny(warnings)] | ||
|
||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. You can simply remove this I think There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Oh sorry, I see the change. Nice |
||
#[macro_use] | ||
pub mod data; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Instead, add an
#[rstest]
or#[test]
tag above