-
Notifications
You must be signed in to change notification settings - Fork 0
refactor: timestamp rewrite #2
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
Merged
Merged
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
cabfef4
add builder
lightsing 13ed8ea
add builder
lightsing e45d748
rewrite
lightsing 5ccbf19
rewrite Attestation
lightsing b74c929
clippy
lightsing 833dc92
Merge remote-tracking branch 'origin/feat/proof-builder' into feat/pr…
lightsing 2e158eb
return when ok
lightsing 768e368
fix
lightsing 081e7f4
full integration with allocator API
lightsing cefa71b
fmt
lightsing 1e65338
apply review
lightsing 3969756
apply review
lightsing File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,43 @@ | ||
| use crate::codec::*; | ||
| use alloc::vec::Vec; | ||
|
|
||
| #[cfg(feature = "bytes")] | ||
| mod bytes; | ||
| mod primitives; | ||
| #[cfg(feature = "std")] | ||
| mod std_io; | ||
|
|
||
| #[cfg(feature = "std")] | ||
| pub use std_io::{Reader, Writer}; | ||
|
|
||
| impl<A: Allocator> Encoder for Vec<u8, A> { | ||
| fn encode_byte(&mut self, byte: u8) -> Result<(), EncodeError> { | ||
| self.push(byte); | ||
| Ok(()) | ||
| } | ||
|
|
||
| fn write_all(&mut self, buf: impl AsRef<[u8]>) -> Result<(), EncodeError> { | ||
| self.extend_from_slice(buf.as_ref()); | ||
| Ok(()) | ||
| } | ||
| } | ||
|
|
||
| impl Decoder for &[u8] { | ||
| fn decode_byte(&mut self) -> Result<u8, DecodeError> { | ||
| let Some((a, b)) = self.split_at_checked(1) else { | ||
| return Err(DecodeError::UnexpectedEof); | ||
| }; | ||
| *self = b; | ||
| Ok(a[0]) | ||
| } | ||
|
|
||
| fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), DecodeError> { | ||
| let len = buf.len(); | ||
| let Some((a, b)) = self.split_at_checked(len) else { | ||
| return Err(DecodeError::UnexpectedEof); | ||
| }; | ||
| buf.copy_from_slice(a); | ||
| *self = b; | ||
| Ok(()) | ||
| } | ||
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| use crate::codec::*; | ||
| use bytes::{BufMut, BytesMut}; | ||
|
|
||
| impl Encoder for BytesMut { | ||
| fn encode_byte(&mut self, byte: u8) -> Result<(), EncodeError> { | ||
| self.put_u8(byte); | ||
| Ok(()) | ||
| } | ||
|
|
||
| fn write_all(&mut self, buf: impl AsRef<[u8]>) -> Result<(), EncodeError> { | ||
| self.put_slice(buf.as_ref()); | ||
| Ok(()) | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.