Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 70693d2

Browse filesBrowse files
arihant2mathyouknowonerodrigocamdarleybarretocoolreader18
committed
Port over code from #2364
Co-authored-by: Jeong YunWon <jeong@youknowone.org> Co-authored-by: Rodrigo Oliveira <rodrigo.redcode@gmail.com> Co-authored-by: Darley Barreto <darleybarreto@gmail.com> Co-authored-by: Noah <33094578+coolreader18@users.noreply.github.com>
1 parent a500178 commit 70693d2
Copy full SHA for 70693d2

File tree

Expand file treeCollapse file tree

17 files changed

+3463
-195
lines changed
Filter options
Expand file treeCollapse file tree

17 files changed

+3463
-195
lines changed

‎Cargo.lock

Copy file name to clipboardExpand all lines: Cargo.lock
+215-191Lines changed: 215 additions & 191 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎jit/Cargo.toml

Copy file name to clipboardExpand all lines: jit/Cargo.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ cranelift-jit = "0.88.0"
2121
cranelift-module = "0.88.0"
2222

2323
[dependencies.libffi]
24-
version = "3.1.0"
24+
version = "3.2.0"
2525
features = ["system"]
2626

2727
[dev-dependencies]

‎match_test.py

Copy file name to clipboard
+7Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Test match statement
2+
x = 1
3+
match x:
4+
case 1:
5+
print("one")
6+
case 2:
7+
print("two")

‎vm/Cargo.toml

Copy file name to clipboardExpand all lines: vm/Cargo.toml
+8-3Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,14 @@ unicode_names2 = { workspace = true }
8787
# https://github.com/RustPython/RustPython/pull/832#discussion_r275428939
8888
unicode-casing = "0.1.0"
8989
# update version all at the same time
90-
unic-ucd-bidi = "0.9.0"
91-
unic-ucd-category = "0.9.0"
92-
unic-ucd-ident = "0.9.0"
90+
unic-ucd-bidi = "0.9.0"
91+
unic-ucd-category = "0.9.0"
92+
unic-ucd-ident = "0.9.0"
93+
94+
# ctypes
95+
libloading = "0.8.6"
96+
libffi = "3.2.0"
97+
widestring = "1.1.0"
9398

9499
[target.'cfg(unix)'.dependencies]
95100
rustix = { workspace = true }

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.