8000 renames · RustPython/RustPython@361d09b · GitHub
[go: up one dir, main page]

Skip to content

Commit 361d09b

Browse files
committed
renames
1 parent 7a54043 commit 361d09b

File tree

6 files changed

+150
-162
lines changed

6 files changed

+150
-162
lines changed

Cargo.lock

Lines changed: 11 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ ssl-rustls = ["ssl", "rustpython-stdlib/ssl-rustls"]
2525
ssl-openssl = ["ssl", "rustpython-stdlib/ssl-openssl"]
2626
ssl-vendor = ["ssl-openssl", "rustpython-stdlib/ssl-vendor"]
2727
tkinter = ["rustpython-stdlib/tkinter"]
28-
cpython = ["dep:rustpython-cpython"]
28+
pyo3 = ["dep:rustpython-module_pyo3"]
2929

3030
[build-dependencies]
3131
winresource = "0.1"
@@ -35,7 +35,7 @@ rustpython-compiler = { workspace = true }
3535
rustpython-pylib = { workspace = true, optional = true }
3636
rustpython-stdlib = { workspace = true, optional = true, features = ["compiler"] }
3737
rustpython-vm = { workspace = true, features = ["compiler"] }
38-
rustpython-cpython = { workspace = true, optional = true }
38+
rustpython-module_pyo3 = { workspace = true, optional = true }
3939
ruff_python_parser = { workspace = true }
4040

4141
cfg-if = { workspace = true }
@@ -152,7 +152,7 @@ rustpython-stdlib = { path = "crates/stdlib", default-features = false, version
152152
rustpython-sre_engine = { path = "crates/sre_engine", version = "0.4.0" }
153153
rustpython-wtf8 = { path = "crates/wtf8", version = "0.4.0" }
154154
rustpython-doc = { path = "crates/doc", version = "0.4.0" }
155-
rustpython-cpython = { path = "crates/cpython", version = "0.4.0" }
155+
rustpython-module_pyo3 = { path = "crates/module_pyo3", version = "0.4.0" }
156156

157157
ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
158158
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
2-
name = "rustpython-cpython"
3-
description = "RustPython to CPython bridge via PyO3"
2+
name = "rustpython-module_pyo3"
3+
description = "RustPython pyo3 module - bridge to CPython via PyO3"
44
version.workspace = true
55
authors.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)
0