-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
26 lines (24 loc) · 787 Bytes
/
Cargo.toml
File metadata and controls
26 lines (24 loc) · 787 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
[package]
name = "python-runner"
version = "0.1.0"
edition = "2021"
[profile.release]
opt-level = 2
lto = "fat"
codegen-units = 1
strip = true
panic = "abort"
[dependencies]
pyo3 = { version = "~0.23", default-features = false, features = ["auto-initialize", "num-bigint"] }
rustpython-parser = { version = "~0.4", default-features = false, features = ["num-bigint"] }
num-bigint = "*"
walkdir = "~2.5"
tracing = "~0.1"
tracing-subscriber = { version = "~0.3", features = ["env-filter"] }
thiserror = { version = "~2.0" }
anyhow = "~1.0"
rfd = "~0.15"
clap = { version = "~4.5", features = ["derive"] }
egui = { version = "~0.30", default-features = false, features = ["default_fonts"] }
eframe = { version = "~0.30", default-features = false, features = ["glow", "x11"] }
hex = "~0.4"