Skip to content

Commit

Permalink
updated upstream crates
Browse files Browse the repository at this point in the history
  • Loading branch information
mkatychev committed Mar 27, 2024
1 parent 0711f71 commit c452d0a
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 32 deletions.
49 changes: 24 additions & 25 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,32 +15,31 @@ members = [
resolver = "2"

[workspace.dependencies]
anyhow = "1.0.71"
argh = "0.1.10"
chrono = "0.4.26"
colored = "2.0.0"
colored-diff = "0.2.3"
colored_json = "2.1.0"
filmreel = { version = "0.7.0", path = "filmreel" }
anyhow = "1.0"
argh = "0.1"
chrono = "0.4"
colored = "2.1"
colored-diff = "0.2"
colored_json = "4.1"
glob = "0.3.1"
http = "0.2.9"
http = "1.1.0"
lazy_static = "1.4.0"
log = { version = "0.4.18", features = ["std"] }
mdcat = "0.30.3"
log = { version = "0.4", features = ["std"] }
mdcat = "2.1"
paste = "1"
pest = "2.7"
pest_derive = "2.7"
pretty_assertions = "1.4.0"
prettytable-rs = "0.10"
pulldown-cmark ="0.10"
regex = "1.8.3"
reqwest = { version = "0.12", features = ["blocking", "json"] }
rstest = "0.18"
serde = { version = "1.0", features = ["derive"] }
serde-hashkey = { version = "0.4", features = ["ordered-float"] }
serde_json = "1.0"
syntect = "5.2"
url = "2.5"
which = "6"
# overflow broken for latest minus
minus = { version = "3.4.0", features = ["static_output"] }
paste = "1.0.12"
pest = "2.6.0"
pest_derive = "2.6.0"
pretty_assertions = "0.7.2"
prettytable-rs = "0.10.0"
pulldown-cmark ="0.9.3"
regex = "1.8.3"
reqwest = { version = "0.11.18", features = ["blocking", "json"] }
rstest = "0.16.0"
serde = { version = "1.0.163", features = ["derive"] }
serde-hashkey = { version = "0.4.5", features = ["ordered-float"] }
serde_json = "1.0.96"
syntect = "5.0.0"
url = "2.3.1"
which = "4.4.0"
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ filmreel.path = "../filmreel"

mdcat = { workspace = true, optional = true }
syntect = { workspace = true, optional = true }
pulldown-cmark = { version = "0.9.3", optional = true }
pulldown-cmark = { workspace = true, optional = true }
# overflow broken for latest minus
minus = { workspace = true, optional = true }

Expand Down
10 changes: 5 additions & 5 deletions cli/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use crate::params::BaseParams;
use anyhow::{anyhow, Error};
use argh::FromArgs;
// >:( Colour
use colored_json::{prelude::*, Color as Colour, Styler};
use colored_json::{prelude::*, Color as Colour, Style, Styler};
use serde::Serialize;
use std::{fs, path::PathBuf};

Expand Down Expand Up @@ -357,10 +357,10 @@ impl VirtualRecord {
/// get_styler returns the custom syntax values for stdout json
fn get_styler() -> Styler {
Styler {
bool_value: Colour::Purple.normal(),
float_value: Colour::RGB(255, 123, 0).normal(),
integer_value: Colour::RGB(255, 123, 0).normal(),
nil_value: Colour::Cyan.normal(),
bool_value: Style::new(Colour::Magenta),
float_value: Style::new(Colour::RGB(255, 123, 0)),
integer_value: Style::new(Colour::RGB(255, 123, 0)),
nil_value: Style::new(Colour::Cyan),
string_include_quotation: false,
..Default::default()
}
Expand Down
2 changes: 1 addition & 1 deletion filmreel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ serde.workspace = true
serde_json.workspace = true
serde-hashkey.workspace = true

jql = { version = "3.3.0", optional = true }
jql = { version = "5.2.0", optional = true }

[features]
default = []
Expand Down

0 comments on commit c452d0a

Please sign in to comment.