-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (70 loc) · 1.58 KB
/
Copy pathCargo.toml
File metadata and controls
77 lines (70 loc) · 1.58 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[workspace]
members = [".", "xtask"]
exclude = ["launcher"]
[package]
name = "queso"
version = "0.3.0"
edition = "2024"
authors = ["John Downey <jdowney@gmail.com>"]
description = "Package Gleam apps into single native executables"
license = "Apache-2.0"
repository = "https://github.com/jtdowney/queso"
readme = "README.md"
keywords = ["gleam", "erlang", "beam", "packaging"]
categories = ["development-tools::build-utils", "command-line-utilities"]
include = [
"/src/**/*",
"/shared/**/*",
"/build.rs",
"/launcher-source.tar.zst",
"/Cargo.toml",
"/Cargo.lock",
"/LICENSE",
"/README.md",
"/CHANGELOG.md",
]
[lints.clippy]
pedantic = { level = "warn", priority = -1 }
missing_errors_doc = "allow"
implicit_hasher = "allow"
[dependencies]
bincode = { version = "2", default-features = false, features = ["std", "derive"] }
byteorder = "1"
camino = "1"
camino-tempfile = "1"
clap = { version = "4", features = ["derive"] }
color-eyre = "0.6.5"
console = "0.16.3"
directories = "6"
eyre = "0.6.12"
flate2 = "1"
hex = "0.4.3"
indicatif = "0.18.4"
serde = { version = "1", features = ["derive"] }
sha2 = "0.11.0"
tar = "0.4.46"
toml = "1"
ureq = "3"
walkdir = "2"
zip = "8"
zstd = "0.13.3"
[dev-dependencies]
camino-tempfile-ext = "0.3.3"
insta = { version = "1", features = ["yaml", "filters"] }
insta-cmd = "0.7.0"
quickcheck = "1"
quickcheck_macros = "1"
regex = "1"
[build-dependencies]
camino = "1"
eyre = "0.6.12"
hex = "0.4.3"
sha2 = "0.11.0"
tar = "0.4.46"
walkdir = "2"
zstd = "0.13.3"
[profile.release]
lto = true
strip = true
[profile.dev.package.insta]
opt-level = 3