Skip to content

Commit

Permalink
feat: Write chronobox table for loggable records
Browse files Browse the repository at this point in the history
  • Loading branch information
DJDuque committed Sep 26, 2024
1 parent c6ffeb5 commit d4e1fd9
Show file tree
Hide file tree
Showing 5 changed files with 264 additions and 78 deletions.
113 changes: 104 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,11 @@ anyhow = "1.0.89"
clap = { version = "4.5.18", features = ["derive"] }
csv = "1.3.0"
directories = "5.0.1"
indent = "0.1.1"
reqwest = { version = "0.12.7", features = ["blocking"] }
serde = { version = "1.0.210", features = ["derive"] }
serde_json = "1.0.128"
tabled = "0.16.0"
tempfile = "3.12.0"
toml = "0.8.19"
tungstenite = "0.24.0"
6 changes: 3 additions & 3 deletions src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ pub struct EntryConfig {
}

#[derive(Clone, Debug, Deserialize)]
struct ChronoboxTableConfig {
channel_names: Vec<String>,
pub struct ChronoboxTableConfig {
pub channel_names: Vec<String>,
#[serde(default)]
include_attachments: bool,
pub include_attachments: bool,
}

#[derive(Clone, Debug, Deserialize)]
Expand Down
Loading

0 comments on commit d4e1fd9

Please sign in to comment.