-
-
Notifications
You must be signed in to change notification settings - Fork 243
/
Copy pathCargo.toml
59 lines (48 loc) · 1.25 KB
/
Cargo.toml
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[package]
name = "pyembed-bench"
version = "0.1.0-pre"
authors = ["Gregory Szorc <[email protected]>"]
edition = "2021"
license = "Python-2.0 OR MPL-2.0"
description = "Benchmarks for the pyembed crate"
homepage = "https://github.com/indygreg/PyOxidizer"
repository = "https://github.com/indygreg/PyOxidizer.git"
[package.metadata.release]
# Internal package is never released.
release = false
[dependencies]
anyhow = "1.0.92"
once_cell = "1.20.2"
pyo3 = "0.18.3"
tempfile = "3.13.0"
zip = { version = "2.2.0", default-features = false, features = ["deflate"] }
[dependencies.pyembed]
version = "0.25.0-pre"
path = "../pyembed"
default-features = false
features = ["zipimport"]
[dependencies.pyoxidizer]
version = "0.24.0-pre"
path = "../pyoxidizer"
[dependencies.python-oxidized-importer]
version = "0.9.0-pre"
path = "../python-oxidized-importer"
default-features = false
features = ["zipimport"]
[dependencies.python-packaging]
version = "0.16.0-pre"
path = "../python-packaging"
[dependencies.python-packed-resources]
version = "0.12.0-pre"
path = "../python-packed-resources"
[dev-dependencies]
criterion = "0.5.1"
[[bench]]
name = "zip"
harness = false
[[bench]]
name = "oxidized_finder"
harness = false
[[bench]]
name = "embedded_interpreter"
harness = false