-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 722 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "rustpython-v2"
version = "1.0.0"
authors = ["Power Trip"]
edition = "2024"
description = "A version of Python remade in Rust."
documentation = "https://github.com/Power-Trip-Labs/RustPython-v2/blob/main/README.md"
readme = "README.md"
repository = "https://github.com/Power-Trip-Labs/RustPython-v2/"
license = "MIT"
keywords = ["python", "rustpython"]
categories = ["parser-implementations", "compilers", "development-tools"]
exclude = [
"build.cmd",
"publish.cmd"
]
[lib]
path = "src/lib.rs"
[[bin]]
name = "rustpython"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
lazy_static = "1.4"
[dev-dependencies]
serial_test = "3.0"