this repo has no description

Update common deps

authored by danikvitek.bsky.social and committed by

Louis Pilfold 3b8ac275 7f81ffc7

+16 -11
+4 -1
.vscode/settings.json
··· 12 }, 13 "cSpell.words": [ 14 "camino", 15 "codegen", 16 "ecow", 17 "flate", 18 "HEXPM", 19 "insta", 20 "itertools", ··· 24 "subpackage", 25 "Telem", 26 "Unretire", 27 - "Untar" 28 ], 29 "cSpell.language": "en,uk,en-GB,en-US" 30 }
··· 12 }, 13 "cSpell.words": [ 14 "camino", 15 + "cksum", 16 "codegen", 17 "ecow", 18 "flate", 19 + "hardlinking", 20 "HEXPM", 21 "insta", 22 "itertools", ··· 26 "subpackage", 27 "Telem", 28 "Unretire", 29 + "Untar", 30 + "walkdir" 31 ], 32 "cSpell.language": "en,uk,en-GB,en-US" 33 }
+9 -9
Cargo.toml
··· 16 # Parsing 17 regex = "1.10.3" 18 # Colours in terminal 19 - termcolor = "1.1.2" 20 # Data (de)serialisation 21 serde = { version = "1.0", features = ["derive"] } 22 serde_json = "1.0" 23 # toml config file parsing 24 toml = "0.5.8" 25 - walkdir = "2.3.2" 26 # Enum trait impl macros 27 strum = { version = "0.26.2", features = ["derive"] } 28 # Hex package manager client 29 hexpm = "2.1.1" 30 # Creation of tar file archives 31 - tar = "0.4.37" 32 # gzip compression 33 - flate2 = "1.0.22" 34 # Byte array data type 35 - bytes = "1.1.0" 36 # Logging 37 tracing = "0.1.40" 38 # Macro to work around Rust's traits not working with async. Sigh. 39 - async-trait = "0.1.51" 40 # HTTP types 41 http = "0.2" 42 # Async combinators for futures 43 futures = "0.3.30" 44 # Little helper to omit fields that cannot be debug printed 45 - debug-ignore = "1.0.1" 46 # base encoding 47 base16 = "0.2.1" 48 # Language server protocol server plumbing ··· 55 # std::error::Error definition macro 56 thiserror = "1.0.58" 57 # Test assertion errors with diffs 58 - pretty_assertions = "1.0.0" 59 # Snapshot testing to make test maintenance easier 60 - insta = "1.8.0"
··· 16 # Parsing 17 regex = "1.10.3" 18 # Colours in terminal 19 + termcolor = "1.4.1" 20 # Data (de)serialisation 21 serde = { version = "1.0", features = ["derive"] } 22 serde_json = "1.0" 23 # toml config file parsing 24 toml = "0.5.8" 25 + walkdir = "2.5.0" 26 # Enum trait impl macros 27 strum = { version = "0.26.2", features = ["derive"] } 28 # Hex package manager client 29 hexpm = "2.1.1" 30 # Creation of tar file archives 31 + tar = "0.4.40" 32 # gzip compression 33 + flate2 = "1.0.28" 34 # Byte array data type 35 + bytes = "1.5.0" 36 # Logging 37 tracing = "0.1.40" 38 # Macro to work around Rust's traits not working with async. Sigh. 39 + async-trait = "0.1.77" 40 # HTTP types 41 http = "0.2" 42 # Async combinators for futures 43 futures = "0.3.30" 44 # Little helper to omit fields that cannot be debug printed 45 + debug-ignore = "1.0.5" 46 # base encoding 47 base16 = "0.2.1" 48 # Language server protocol server plumbing ··· 55 # std::error::Error definition macro 56 thiserror = "1.0.58" 57 # Test assertion errors with diffs 58 + pretty_assertions = "1.4.0" 59 # Snapshot testing to make test maintenance easier 60 + insta = "1.36.1"
+3 -1
compiler-cli/src/new.rs
··· 21 const REBAR3_VERSION: &str = "3"; 22 const ELIXIR_VERSION: &str = "1.15.4"; 23 24 - #[derive(Debug, Serialize, Deserialize, Display, EnumString, VariantNames, ValueEnum, Clone, Copy)] 25 #[strum(serialize_all = "kebab_case")] 26 pub enum Template { 27 Lib,
··· 21 const REBAR3_VERSION: &str = "3"; 22 const ELIXIR_VERSION: &str = "1.15.4"; 23 24 + #[derive( 25 + Debug, Serialize, Deserialize, Display, EnumString, VariantNames, ValueEnum, Clone, Copy, 26 + )] 27 #[strum(serialize_all = "kebab_case")] 28 pub enum Template { 29 Lib,