Skip to content

Commit

Permalink
Update common deps
Browse files Browse the repository at this point in the history
  • Loading branch information
DanikVitek authored and lpil committed Mar 17, 2024
1 parent 7f81ffc commit 3b8ac27
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 11 deletions.
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,11 @@
},
"cSpell.words": [
"camino",
"cksum",
"codegen",
"ecow",
"flate",
"hardlinking",
"HEXPM",
"insta",
"itertools",
Expand All @@ -24,7 +26,8 @@
"subpackage",
"Telem",
"Unretire",
"Untar"
"Untar",
"walkdir"
],
"cSpell.language": "en,uk,en-GB,en-US"
}
18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,33 +16,33 @@ itertools = "0.12.1"
# Parsing
regex = "1.10.3"
# Colours in terminal
termcolor = "1.1.2"
termcolor = "1.4.1"
# Data (de)serialisation
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
# toml config file parsing
toml = "0.5.8"
walkdir = "2.3.2"
walkdir = "2.5.0"
# Enum trait impl macros
strum = { version = "0.26.2", features = ["derive"] }
# Hex package manager client
hexpm = "2.1.1"
# Creation of tar file archives
tar = "0.4.37"
tar = "0.4.40"
# gzip compression
flate2 = "1.0.22"
flate2 = "1.0.28"
# Byte array data type
bytes = "1.1.0"
bytes = "1.5.0"
# Logging
tracing = "0.1.40"
# Macro to work around Rust's traits not working with async. Sigh.
async-trait = "0.1.51"
async-trait = "0.1.77"
# HTTP types
http = "0.2"
# Async combinators for futures
futures = "0.3.30"
# Little helper to omit fields that cannot be debug printed
debug-ignore = "1.0.1"
debug-ignore = "1.0.5"
# base encoding
base16 = "0.2.1"
# Language server protocol server plumbing
Expand All @@ -55,6 +55,6 @@ camino = "1.1.6"
# std::error::Error definition macro
thiserror = "1.0.58"
# Test assertion errors with diffs
pretty_assertions = "1.0.0"
pretty_assertions = "1.4.0"
# Snapshot testing to make test maintenance easier
insta = "1.8.0"
insta = "1.36.1"
4 changes: 3 additions & 1 deletion compiler-cli/src/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,9 @@ const ERLANG_OTP_VERSION: &str = "26.0.2";
const REBAR3_VERSION: &str = "3";
const ELIXIR_VERSION: &str = "1.15.4";

#[derive(Debug, Serialize, Deserialize, Display, EnumString, VariantNames, ValueEnum, Clone, Copy)]
#[derive(
Debug, Serialize, Deserialize, Display, EnumString, VariantNames, ValueEnum, Clone, Copy,
)]
#[strum(serialize_all = "kebab_case")]
pub enum Template {
Lib,
Expand Down

0 comments on commit 3b8ac27

Please sign in to comment.