Skip to content

Commit

Permalink
enhance json formatter for ingestion analysis
Browse files Browse the repository at this point in the history
  • Loading branch information
keinsell committed Jan 18, 2025
1 parent 2f4d1ec commit f91abca
Show file tree
Hide file tree
Showing 16 changed files with 412 additions and 352 deletions.
59 changes: 58 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@ async-std = { version = "1", features = ["attributes", "async-global-executor"]
atty = "0.2.14"
chrono = { version = "0.4.39", features = ["std", "serde", "iana-time-zone", "rkyv"] }
chrono-english = "0.1.7"
clap = { version = "4.5.23", features = ["derive", "wrap_help", "suggestions", "std", "usage", "error-context", "help", "unstable-styles", "unicode", "env", "unstable-v5"] }
clap = { version = "4.5.23", features = ["derive", "wrap_help", "suggestions", "std", "cargo"] }
clap-verbosity-flag = "3.0.1"
clap_complete = "4.5.40"
clap_mangen = "0.2.24"
date_time_parser = "0.2.0"
delegate = "0.13.1"
derivative = "2.2.0"
Expand Down Expand Up @@ -59,6 +60,12 @@ ratatui = { version = "0.26.0", features = ["all-widgets", "macros", "serde"] }
crossterm = "0.27.0"
async-trait = "0.1.85"
indicatif = "0.17.9"
tracing-subscriber = "0.3.19"
tracing-indicatif = "0.3.8"
tracing = "0.1.41"
itertools = "0.13.0"
rayon = "1.10.0"
predicates = "3.1.3"

[expand]
color = "always"
Expand All @@ -67,3 +74,53 @@ pager = true
[profile.dist]
inherits = "release"
lto = "fat"

[package.metadata.generate-rpm]
assets = [
{ source = "target/release/neuronek", dest = "/usr/bin/neuronek", mode = "755" },
{ source = "LICENSE-MIT", dest = "/usr/share/doc/neuronek/LICENSE", mode = "644" },
{ source = "README.md", dest = "/usr/share/doc/neuronek/README.md", mode = "644" },
{ source = "man/neuronek.1", dest = "/usr/share/man/man1/neuronek.1", mode = "644", doc = true },
{ source = "completions/neuronek.bash", dest = "/usr/share/bash-completion/completions/neuronek", mode = "644" },
{ source = "completions/neuronek.fish", dest = "/usr/share/fish/vendor_completions.d/neuronek.fish", mode = "644" },
{ source = "completions/_neuronek", dest = "/usr/share/zsh/vendor-completions/", mode = "644" },
]

[package.metadata.deb]
assets = [
[
"target/release/neuronek",
"usr/bin/",
"755",
],
[
"../LICENSE-MIT",
"/usr/share/doc/neuronek/LICENSE",
"644",
],
[
"../README.md",
"usr/share/doc/neuronek/README",
"644",
],
[
"../man/neuronek.1",
"/usr/share/man/man1/neuronek.1",
"644",
],
[
"../completions/neuronek.bash",
"/usr/share/bash-completion/completions/neuronek",
"644",
],
[
"../completions/neuronek.fish",
"/usr/share/fish/vendor_completions.d/neuronek.fish",
"644",
],
[
"../completions/_neuronek",
"/usr/share/zsh/vendor-completions/",
"644",
],
]
Empty file added docs/route-of-administration.md
Empty file.
Loading

0 comments on commit f91abca

Please sign in to comment.