Skip to content

Commit 20f06b7

Browse files
committed
rename
1 parent 71c218f commit 20f06b7

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

Cargo2.toml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
[package]
2+
name = "async_py"
3+
version = "0.2.0"
4+
edition = "2021"
5+
6+
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7+
[dependencies]
8+
dunce = "1.0.4"
9+
serde_json = "1.0.114"
10+
thiserror = "2.0"
11+
tokio = { version = "1.36.0", features = ["sync", "macros"] }
12+
13+
[features]
14+
15+
# default = ["rustpython"]
16+
default = ["pyo3"]
17+
pyo3 = ["dep:pyo3"]
18+
rustpython = ["dep:rustpython-vm", "dep:rustpython-stdlib"]
19+
20+
[dependencies.pyo3]
21+
version = "0.26.0"
22+
features = ["auto-initialize"]
23+
optional = true
24+
25+
[dev-dependencies]
26+
tempfile = "3"
27+
[dependencies.rustpython-vm]
28+
version = "0.4.0"
29+
optional = true
30+
[dependencies.rustpython-stdlib]
31+
version = "0.4.0"
32+
optional = true
33+
34+
# The `full` feature for tokio is needed for the tests
35+
[dev-dependencies.tokio]
36+
version = "1"
37+
features = ["full"]
38+
39+

0 commit comments

Comments
 (0)