-
-
Notifications
You must be signed in to change notification settings - Fork 239
/
Cargo.toml
55 lines (52 loc) · 1.11 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
[package]
name = "pyoxidizer"
version = "0.2.0"
authors = ["Gregory Szorc <gregory.szorc@gmail.com>"]
license = "MPL-2.0"
description = "Package self-contained Python applications"
readme = "../README.md"
homepage = "https://github.com/indygreg/PyOxidizer"
repository = "https://github.com/indygreg/PyOxidizer.git"
keywords = ["python"]
edition = "2018"
build = "build.rs"
# We rename the library so we can have crate documentation for both the
# library and the binary.
[lib]
name = "pyoxidizerlib"
path = "src/lib.rs"
[build-dependencies]
vergen = "3"
[dependencies]
byteorder = "1.2"
cargo_toml = "0.6"
cc = "1.0"
clap = "2.32"
encoding_rs = "0.8"
git2 = "0.9"
glob = "0.3"
goblin = "0.0"
handlebars = "1.1"
hex = "0.3"
itertools = "0.8"
lazy_static = "1.3"
libc = "0.2"
regex = "1"
reqwest = "0.9"
rustc_version = "0.2"
semver = "0.9"
serde = { version = "1.0", features = ["derive"] }
serde_cbor = "0.9"
serde_json = "1.0"
sha2 = "0.8"
slog = "2.4"
tar = "0.4"
tempdir = "0.3"
toml = "0.5"
url = "1.7"
uuid = { version = "0.7", features = ["v5"] }
version-compare = "0.0"
walkdir = "2"
xml-rs = "0.8"
zip = "0.5"
zstd = "0.4"