| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent f3e7273 commit ba0bb06
7 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -178,9 +178,12 @@ num-complex = "0.4.6" | |||
| 178 | 178 | num-integer = "0.1.46" | |
| 179 | 179 | num-traits = "0.2" | |
| 180 | 180 | num_enum = { version = "0.7", default-features = false } | |
| 181 | + optional = "0.5" | ||
| 181 | 182 | once_cell = "1.20.3" | |
| 182 | 183 | parking_lot = "0.12.3" | |
| 183 | 184 | paste = "1.0.15" | |
| 185 | + proc-macro2 = "1.0.93" | ||
| 186 | + quote = "1.0.38" | ||
| 184 | 187 | rand = "0.9" | |
| 185 | 188 | rustix = { version = "0.38", features = ["event"] } | |
| 186 | 189 | rustyline = "15.0.0" | |
@@ -192,6 +195,13 @@ strum_macros = "0.27" | |||
| 192 | 195 | syn = "2" | |
| 193 | 196 | thiserror = "2.0" | |
| 194 | 197 | thread_local = "1.1.8" | |
| 198 | + unicode-casing = "0.1.0" | ||
| 199 | + unic-char-property = "0.9.0" | ||
| 200 | + unic-normal = "0.9.0" | ||
| 201 | + unic-ucd-age = "0.9.0" | ||
| 202 | + unic-ucd-bidi = "0.9.0" | ||
| 203 | + unic-ucd-category = "0.9.0" | ||
| 204 | + unic-ucd-ident = "0.9.0" | ||
| 195 | 205 | unicode_names2 = "1.3.0" | |
| 196 | 206 | widestring = "1.1.0" | |
| 197 | 207 | windows-sys = "0.59.0" | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,7 +18,7 @@ bitflags = { workspace = true } | |||
| 18 | 18 | itertools = { workspace = true } | |
| 19 | 19 | malachite-bigint = { workspace = true } | |
| 20 | 20 | num-complex = { workspace = true } | |
| 21 | - serde = { version = "1.0.217", optional = true, default-features = false, features = ["derive"] } | ||
| 21 | + serde = { workspace = true, optional = true, default-features = false, features = ["derive"] } | ||
| 22 | 22 | ||
| 23 | 23 | lz4_flex = "0.11" | |
| 24 | 24 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,7 +13,7 @@ hexf-parse = "0.2.1" | |||
| 13 | 13 | is-macro.workspace = true | |
| 14 | 14 | lexical-parse-float = { version = "0.8.0", features = ["format"] } | |
| 15 | 15 | num-traits = { workspace = true } | |
| 16 | - unic-ucd-category = "0.9" | ||
| 16 | + unic-ucd-category = { workspace = true } | ||
| 17 | 17 | ||
| 18 | 18 | [dev-dependencies] | |
| 19 | 19 | rand = { workspace = true } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -17,8 +17,8 @@ itertools = { workspace = true } | |||
| 17 | 17 | syn = { workspace = true, features = ["full", "extra-traits"] } | |
| 18 | 18 | ||
| 19 | 19 | maplit = "1.0.2" | |
| 20 | - proc-macro2 = "1.0.93" | ||
| 21 | - quote = "1.0.38" | ||
| 20 | + proc-macro2 = { workspace = true } | ||
| 21 | + quote = { workspace = true } | ||
| 22 | 22 | syn-ext = { version = "0.5.0", features = ["full"] } | |
| 23 | 23 | textwrap = { version = "0.16.1", default-features = false } | |
| 24 | 24 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -65,14 +65,14 @@ blake2 = "0.10.4" | |||
| 65 | 65 | unicode_names2 = { workspace = true } | |
| 66 | 66 | # TODO: use unic for this; needed for title case: | |
| 67 | 67 | # https://github.com/RustPython/RustPython/pull/832#discussion_r275428939 | |
| 68 | - unicode-casing = "0.1.0" | ||
| 68 | + unicode-casing = { workspace = true } | ||
| 69 | 69 | # update version all at the same time | |
| 70 | - unic-char-property = "0.9.0" | ||
| 71 | - unic-normal = "0.9.0" | ||
| 72 | - unic-ucd-bidi = "0.9.0" | ||
| 73 | - unic-ucd-category = "0.9.0" | ||
| 74 | - unic-ucd-age = "0.9.0" | ||
| 75 | - unic-ucd-ident = "0.9.0" | ||
| 70 | + unic-char-property = { workspace = true } | ||
| 71 | + unic-normal = { workspace = true } | ||
| 72 | + unic-ucd-bidi = { workspace = true } | ||
| 73 | + unic-ucd-category = { workspace = true } | ||
| 74 | + unic-ucd-age = { workspace = true } | ||
| 75 | + unic-ucd-ident = { workspace = true } | ||
| 76 | 76 | ucd = "0.1.1" | |
| 77 | 77 | ||
| 78 | 78 | # compression | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -81,19 +81,19 @@ caseless = "0.2.2" | |||
| 81 | 81 | flamer = { version = "0.4", optional = true } | |
| 82 | 82 | half = "2" | |
| 83 | 83 | memoffset = "0.9.1" | |
| 84 | - optional = "0.5.0" | ||
| 84 | + optional = { workspace = true } | ||
| 85 | 85 | result-like = "0.5.0" | |
| 86 | 86 | timsort = "0.1.2" | |
| 87 | 87 | ||
| 88 | 88 | ## unicode stuff | |
| 89 | 89 | unicode_names2 = { workspace = true } | |
| 90 | 90 | # TODO: use unic for this; needed for title case: | |
| 91 | 91 | # https://github.com/RustPython/RustPython/pull/832#discussion_r275428939 | |
| 92 | - unicode-casing = "0.1.0" | ||
| 92 | + unicode-casing = { workspace = true } | ||
| 93 | 93 | # update version all at the same time | |
| 94 | - unic-ucd-bidi = "0.9.0" | ||
| 95 | - unic-ucd-category = "0.9.0" | ||
| 96 | - unic-ucd-ident = "0.9.0" | ||
| 94 | + unic-ucd-bidi = { workspace = true } | ||
| 95 | + unic-ucd-category = { workspace = true } | ||
| 96 | + unic-ucd-ident = { workspace = true } | ||
| 97 | 97 | ||
| 98 | 98 | [target.'cfg(unix)'.dependencies] | |
| 99 | 99 | rustix = { workspace = true } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -18,7 +18,7 @@ harness = false | |||
| 18 | 18 | rustpython-common = { workspace = true } | |
| 19 | 19 | num_enum = { workspace = true } | |
| 20 | 20 | bitflags = { workspace = true } | |
| 21 | - optional = "0.5" | ||
| 21 | + optional = { workspace = true } | ||
| 22 | 22 | ||
| 23 | 23 | [dev-dependencies] | |
| 24 | 24 | criterion = { workspace = true } | |
| Back | FazBrowse Home | New Git URL |
0 commit comments