-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
new: fields and message expansion feature
- Loading branch information
Showing
49 changed files
with
4,062 additions
and
851 deletions.
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 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 |
---|---|---|
|
@@ -4,7 +4,7 @@ members = [".", "crate/encstr"] | |
[workspace.package] | ||
repository = "https://github.com/pamburus/hl" | ||
authors = ["Pavel Ivanov <[email protected]>"] | ||
version = "0.30.0" | ||
version = "0.31.0-alpha.1" | ||
edition = "2021" | ||
license = "MIT" | ||
|
||
|
@@ -53,13 +53,15 @@ enumset-ext = { path = "./crate/enumset-ext" } | |
env_logger = "0" | ||
flate2 = "1" | ||
heapless = "0" | ||
heapopt = { path = "./crate/heapopt" } | ||
hex = "0" | ||
htp = { git = "https://github.com/pamburus/htp.git" } | ||
humantime = "2" | ||
itertools = "0.13" | ||
itoa = { version = "1", default-features = false } | ||
known-folders = "1" | ||
log = "0" | ||
mline = { path = "./crate/mline" } | ||
nonzero_ext = "0" | ||
notify = { version = "7", features = ["macos_kqueue"] } | ||
nu-ansi-term = "0" | ||
|
This file contains 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 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 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 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 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 |
---|---|---|
|
@@ -24,3 +24,5 @@ impl fmt::Display for Error { | |
} | ||
} | ||
} | ||
|
||
impl std::error::Error for Error {} |
This file contains 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 @@ | ||
/target |
This file contains 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,12 @@ | ||
[package] | ||
description = "Optimized collections for minimal heap usage" | ||
name = "heapopt" | ||
version = "0.1.0" | ||
workspace = "../.." | ||
repository.workspace = true | ||
edition.workspace = true | ||
authors.workspace = true | ||
license.workspace = true | ||
|
||
[dependencies] | ||
heapless = "0" |
Oops, something went wrong.