feat/other-formats #7

Merged
PlexSheep merged 6 commits from feat/other-formats into master 2024-05-12 18:46:11 +02:00
Owner
No description provided.
PlexSheep added 3 commits 2024-05-12 02:00:03 +02:00
cargo devel CI / cargo CI (push) Successful in 1m10s Details
00304ddff0
feat: add base64 format #4
This commit adds the option to output base64. Note that this converts
numbers to base64, not strings. formatting 65 will output "QQ==", the
same as using 'echo -ne "A" | base64' would (A is 65 in ASCII).
cargo devel CI / cargo CI (push) Successful in 1m18s Details
cb0c56107a
feat: add base32 and use fast32 as dep #4
PlexSheep reviewed 2024-05-12 02:00:29 +02:00
@ -16,4 +16,5 @@ keywords = ["cli"]
anyhow = "1.0.83"
clap = { version = "4.5.4", features = ["derive"] }
clap-num = "1.1.1"
fast32 = "1.0.2"
Author
Owner

seems okay

seems okay
PlexSheep marked this conversation as resolved
PlexSheep reviewed 2024-05-12 02:05:10 +02:00
PlexSheep left a comment
Author
Owner

Don't add a function for binary manupulation to this program, use a dependency instead.

Don't add a function for binary manupulation to this program, use a dependency instead.
src/format.rs Outdated
@ -41,2 +54,4 @@
}
}
fn u128_to_u8_slice(mut num: u128) -> Vec<u8> {
Author
Owner

This seems like a fairly common thing to do, perhaps we can use a dependency for this?

If it does not exist, it might be a good fit for libpt-bintols

This seems like a fairly common thing to do, perhaps we can use a dependency for this? If it does not exist, it might be a good fit for `libpt-bintols`
Author
Owner

Issue for pt was created: PlexSheep/pt#76

Issue for pt was created: https://git.cscherr.de/PlexSheep/pt/issues/76
PlexSheep marked this conversation as resolved
PlexSheep changed title from feat/other-formats to WIP: feat/other-formats 2024-05-12 02:05:32 +02:00
PlexSheep added 1 commit 2024-05-12 17:27:44 +02:00
cargo devel CI / cargo CI (push) Failing after 1m38s Details
66144dcb3c
ci add cargo test of docs
PlexSheep added 1 commit 2024-05-12 18:36:40 +02:00
PlexSheep force-pushed feat/other-formats from e1be745a2f to 24bf6cd97e 2024-05-12 18:36:51 +02:00 Compare
PlexSheep reviewed 2024-05-12 18:37:39 +02:00
PlexSheep left a comment
Author
Owner

okay

okay
PlexSheep changed title from WIP: feat/other-formats to feat/other-formats 2024-05-12 18:37:49 +02:00
PlexSheep added 1 commit 2024-05-12 18:43:46 +02:00
cargo devel CI / cargo CI (push) Has been cancelled Details
fc6e91db98
feat: add lib.rs #8
PlexSheep force-pushed feat/other-formats from fc6e91db98 to ec4aa09538 2024-05-12 18:43:55 +02:00 Compare
PlexSheep merged commit e186dd67f8 into master 2024-05-12 18:46:11 +02:00
PlexSheep deleted branch feat/other-formats 2024-05-12 18:46:11 +02:00
Sign in to join this conversation.
No reviewers
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: PlexSheep/numf#7
No description provided.