🌐 AI搜索 & 代理 主页
Skip to content
Draft
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
renames
  • Loading branch information
youknowone committed Nov 28, 2025
commit 361d09b9c8cc8827836342fb139a58bc7018a4d7
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ssl-rustls = ["ssl", "rustpython-stdlib/ssl-rustls"]
ssl-openssl = ["ssl", "rustpython-stdlib/ssl-openssl"]
ssl-vendor = ["ssl-openssl", "rustpython-stdlib/ssl-vendor"]
tkinter = ["rustpython-stdlib/tkinter"]
cpython = ["dep:rustpython-cpython"]
pyo3 = ["dep:rustpython-module_pyo3"]

[build-dependencies]
winresource = "0.1"
Expand All @@ -35,7 +35,7 @@ rustpython-compiler = { workspace = true }
rustpython-pylib = { workspace = true, optional = true }
rustpython-stdlib = { workspace = true, optional = true, features = ["compiler"] }
rustpython-vm = { workspace = true, features = ["compiler"] }
rustpython-cpython = { workspace = true, optional = true }
rustpython-module_pyo3 = { workspace = true, optional = true }
ruff_python_parser = { workspace = true }

cfg-if = { workspace = true }
Expand Down Expand Up @@ -152,7 +152,7 @@ rustpython-stdlib = { path = "crates/stdlib", default-features = false, version
rustpython-sre_engine = { path = "crates/sre_engine", version = "0.4.0" }
rustpython-wtf8 = { path = "crates/wtf8", version = "0.4.0" }
rustpython-doc = { path = "crates/doc", version = "0.4.0" }
rustpython-cpython = { path = "crates/cpython", version = "0.4.0" }
rustpython-module_pyo3 = { path = "crates/module_pyo3", version = "0.4.0" }

ruff_python_parser = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
ruff_python_ast = { git = "https://github.com/astral-sh/ruff.git", tag = "0.14.1" }
Expand Down
4 changes: 2 additions & 2 deletions crates/cpython/Cargo.toml → crates/module_pyo3/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustpython-cpython"
description = "RustPython to CPython bridge via PyO3"
name = "rustpython-module_pyo3"
description = "RustPython pyo3 module - bridge to CPython via PyO3"
version.workspace = true
authors.workspace = true
edition.workspace = true
Expand Down
Loading
Loading