-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (21 loc) · 890 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (21 loc) · 890 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[workspace]
members = ["include-blob-macros", "test-project"]
package.repository = "https://github.com/SludgePhD/include-blob"
package.edition = "2021"
package.license = "0BSD"
# (update these versions together to ensure that the crates remain linked together exactly)
package.version = "1.0.1"
dependencies.include-blob-macros = { path = "include-blob-macros", version = "=1.0.1" }
[package]
name = "include-blob"
version.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
description = "Include large binary files in an application without the compile time cost of `include_bytes!`"
categories = ["development-tools::build-utils"]
keywords = ["include", "binary", "bytes", "file"]
[dependencies]
include-blob-macros.workspace = true
object = { version = "0.36.7", default-features = false, features = ["write"] }
ar_archive_writer = "0.4.2"