File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 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+
You can’t perform that action at this time.
0 commit comments