diff options
| author | Fuwn <[email protected]> | 2023-03-31 17:49:21 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-03-31 17:49:21 -0700 |
| commit | 397ce63b0c28fbbe95b4019dd22a4a360e8a083f (patch) | |
| tree | 55aedcbfa0bef25168d8eae5f9c6f8f03f1379d5 /Cargo.toml | |
| parent | refactor(src): use response macros (diff) | |
| download | locus-397ce63b0c28fbbe95b4019dd22a4a360e8a083f.tar.xz locus-397ce63b0c28fbbe95b4019dd22a4a360e8a083f.zip | |
feat(translate): character set detection
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -24,7 +24,7 @@ tokio = { version = "1.26.0", features = ["full"] } # Asynchronous Runtime chrono = "0.4.19" # Date and Time pickledb = "0.5.1" # Database tantivy = "0.19.2" # Full-text Search Engine -windmark = { version = "0.2.4", features = [ +windmark = { version = "0.2.5", features = [ "logger", "auto-deduce-mime", "response-macros" @@ -39,7 +39,10 @@ yarte = "0.15.6" # Templating Engine tempfile = "3.3.0" # Temporary File Creation and Access dotenv = "0.15.0" # .env File Support once_cell = "1.13.1" # Lazy Statics -germ = { version = "0.3.7", default-features = false, features = ["ast"] } # Gemini Tool-kit +germ = { version = "0.3.7", default-features = false, features = [ + "ast" +] } # Gemini Tool-kit +chardetng = "0.1.17" # Character Encoding Detection [build-dependencies] vergen = { version = "8.0.0", features = [ |