Skip to content

Commit d12eb19

Browse files
committed
add run_file and set_venv
1 parent 7d0ee28 commit d12eb19

File tree

2 files changed

+109
-2
lines changed

2 files changed

+109
-2
lines changed

Cargo.lock

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

cargo.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,15 @@ edition = "2021"
55

66
[dependencies]
77
pyo3 = { version = "0.26.0", features = ["auto-initialize"] }
8-
tokio = { version = "1", features = ["full"] }
8+
tokio = { version = "1", features = ["sync", "macros", "rt-multi-thread"] }
99
thiserror = "2.0"
1010
serde_json = "1.0.145"
11+
dunce = "1.0.5"
12+
13+
[dev-dependencies]
14+
tempfile = "3"
15+
16+
# The `full` feature for tokio is needed for the tests
17+
[dev-dependencies.tokio]
18+
version = "1"
19+
features = ["full"]

0 commit comments

Comments
 (0)