-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
Cargo.toml
59 lines (52 loc) · 1.12 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 = "python-launcher"
description = "The Python launcher for Unix"
version = "1.0.1"
authors = ["Brett Cannon <[email protected]>"]
homepage = "https://python-launcher.app"
repository = "https://github.com/brettcannon/python-launcher"
readme = "README.md"
include = [
"/src/",
"/tests/",
"/benches/",
"/completions/",
"/man-page/py.1",
"/README.md",
"/CHANGELOG.md",
"/LICENSE",
]
license = "MIT"
keywords = ["Python"]
categories = ["command-line-utilities"]
edition = "2021"
rust-version = "1.66"
[badges]
maintenance = { status = "actively-developed" }
[[bench]]
name = "list"
harness = false
[[bin]]
name = "py"
path = "src/main.rs"
[dependencies]
comfy-table = "7.1.1"
exitcode = "1.1.2"
human-panic = "2.0.0"
log = "0.4.21"
nix = {version = "0.29.0", features = ["process"]}
stderrlog = "0.6.0"
[dev-dependencies]
assert_cmd = "2.0.14"
criterion = "0.5.1"
predicates = "3.1.0"
serial_test = "3.0.0"
tempfile = "3.10.1"
test-case = "3.3.1"
[profile.dev]
split-debuginfo = "unpacked"
[profile.release]
# https://github.com/johnthagen/min-sized-rust
lto = true
strip = true
codegen-units = 1