-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (39 loc) · 1.32 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
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
############################################################################
[package]
name = "include_file_compress"
version = "0.1.3"
edition = "2021"
license = "MIT"
description = "Includes content of file in your binary with compression at compile time."
readme = "README.md"
authors = ["Pavel Ershov <[email protected]>"]
keywords = ["macro"]
categories = ["compression"]
documentation = "https://docs.rs/include_file_compress"
repository = "https://github.com/DevNulPavel/include_file_compress"
publish = ["crates-io"]
exclude = [
".vscode/",
"data_samples/",
]
############################################################################
[features]
default = []
mmap = ["dep:memmap2"]
############################################################################
# Procedural macros
[lib]
proc-macro = true
############################################################################
[dependencies]
# Common
thiserror = "^1.0.59"
cast = "^0.3.0"
# Memmap
memmap2 = { version = "^0.9.4", optional = true }
# Compression
flate2 = { version = "^1.0.28", default-features = false, features = ["rust_backend"] }
# Macros
syn = { version = "^2.0.60", default-features = false }
quote = { version = "^1.0.36", default-features = false }