Skip to content

Commit

Permalink
Merge pull request #270 from Enet4/imp/dictionary-builder/update-heck
Browse files Browse the repository at this point in the history
[dictionary-builder] Update dependencies
  • Loading branch information
Enet4 committed Jul 22, 2022
2 parents e9eac57 + d65d90a commit 6058dd3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dictionary-builder/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,10 @@ path = "src/main.rs"
clap = "2.18.0"
serde = { version = "1.0.55", features = ["derive"] }
serde_json = "1.0.17"
heck = "0.3.1"
heck = "0.4.0"
ureq = "2.4.0"

[dependencies.regex]
version = "1.1.0"
version = "1.6.0"
default-features = false
features = ["std", "perf", "unicode-case", "unicode-perl"]
2 changes: 1 addition & 1 deletion dictionary-builder/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ use clap::{App, Arg};
use regex::Regex;
use serde::Serialize;

use heck::ShoutySnakeCase;
use heck::ToShoutySnakeCase;
use std::borrow::Cow;
use std::io::{BufRead, BufReader, Write};
use std::path::Path;
Expand Down

0 comments on commit 6058dd3

Please sign in to comment.