1
Fork 0
mirror of https://github.com/RGBCube/embd-rs synced 2025-07-29 22:47:44 +00:00

Initial commit

This commit is contained in:
RGBCube 2023-12-21 13:00:33 +03:00
commit a76d9199c0
No known key found for this signature in database
8 changed files with 353 additions and 0 deletions

13
Cargo.toml Normal file
View file

@ -0,0 +1,13 @@
[package]
name = "embed"
description = "Read files or directories from the filesystem at runtime on debug, embed on release."
repository = "https://github.com/RGBCube/embed-rs"
license = "MIT"
keywords = [ "embedding", "files", "debug-optimization", "bundling" ]
cateories = [ "filesystem" ]
authors = [ "RGBCube" ]
version = "0.1.0"
edition = "2021"
[dependencies]
include_dir = { version = "^0.7", features = [ "metadata" ] }