| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent c7ca173 commit f27c1f7
8 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -167,6 +167,7 @@ itertools = "0.14.0" | |||
| 167 | 167 | is-macro = "0.3.7" | |
| 168 | 168 | junction = "1.2.0" | |
| 169 | 169 | libc = "0.2.169" | |
| 170 | + libffi = "3.2" | ||
| 170 | 171 | log = "0.4.25" | |
| 171 | 172 | nix = { version = "0.29", features = ["fs", "user", "process", "term", "time", "signal", "ioctl", "socket", "sched", "zerocopy", "dir", "hostname", "net", "poll"] } | |
| 172 | 173 | malachite-bigint = "0.5" | |
@@ -177,9 +178,12 @@ num-complex = "0.4.6" | |||
| 177 | 178 | num-integer = "0.1.46" | |
| 178 | 179 | num-traits = "0.2" | |
| 179 | 180 | num_enum = { version = "0.7", default-features = false } | |
| 181 | + optional = "0.5" | ||
| 180 | 182 | once_cell = "1.20.3" | |
| 181 | 183 | parking_lot = "0.12.3" | |
| 182 | 184 | paste = "1.0.15" | |
| 185 | + proc-macro2 = "1.0.93" | ||
| 186 | + quote = "1.0.38" | ||
| 183 | 187 | rand = "0.9" | |
| 184 | 188 | rustix = { version = "0.38", features = ["event"] } | |
| 185 | 189 | rustyline = "15.0.0" | |
@@ -191,6 +195,13 @@ strum_macros = "0.27" | |||
| 191 | 195 | syn = "2" | |
| 192 | 196 | thiserror = "2.0" | |
| 193 | 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" | ||
| 194 | 205 | unicode_names2 = "1.3.0" | |
| 195 | 206 | widestring = "1.1.0" | |
| 196 | 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 | |
|---|---|---|---|
@@ -15,15 +15,12 @@ rustpython-compiler-core = { workspace = true } | |||
| 15 | 15 | ||
| 16 | 16 | num-traits = { workspace = true } | |
| 17 | 17 | thiserror = { workspace = true } | |
| 18 | + libffi = { workspace = true, features = ["system"] } | ||
| 18 | 19 | ||
| 19 | 20 | cranelift = "0.116.1" | |
| 20 | 21 | cranelift-jit = "0.116.1" | |
| 21 | 22 | cranelift-module = "0.116.1" | |
| 22 | 23 | ||
| 23 | - [dependencies.libffi] | ||
| 24 | - version = "3.1.0" | ||
| 25 | - features = ["system"] | ||
| 26 | - | ||
| 27 | 24 | [dev-dependencies] | |
| 28 | 25 | rustpython-derive = { path = "../derive", version = "0.4.0" } | |
| 29 | 26 | ||
| 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 } | |
@@ -107,7 +107,7 @@ errno = "0.3" | |||
| 107 | 107 | widestring = { workspace = true } | |
| 108 | 108 | ||
| 109 | 109 | [target.'cfg(all(any(target_os = "linux", target_os = "macos", target_os = "windows"), not(any(target_env = "musl", target_env = "sgx"))))'.dependencies] | |
| 110 | - libffi = "3.2" | ||
| 110 | + libffi = { workspace = true, features = ["system"] } | ||
| 111 | 111 | libloading = "0.8" | |
| 112 | 112 | ||
| 113 | 113 | [target.'cfg(any(not(target_arch = "wasm32"), target_os = "wasi"))'.dependencies] | |
| 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