summaryrefslogtreecommitdiffstats
path: root/Cargo.lock
diff options
context:
space:
mode:
authorJae-Heon Ji <32578710+jaeheonji@users.noreply.github.com>2023-06-20 05:57:39 +0900
committerGitHub <noreply@github.com>2023-06-20 05:57:39 +0900
commit9ed45357ff34599ab0c99142b944c00d0276df6e (patch)
tree77879b78da32ad56abfa47949a6a513f65551a07 /Cargo.lock
parent294b87803f1b6a66c8ae559e736c69aa676f90b3 (diff)
hotfix: include theme files into binary (#2566)
* fix: include theme files into binary * fix: delete unused features * fix: change user theme dir to optional
Diffstat (limited to 'Cargo.lock')
-rw-r--r--Cargo.lock20
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.lock b/Cargo.lock
index ad00e69c8..2e1439327 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1354,6 +1354,25 @@ dependencies = [
]
[[package]]
+name = "include_dir"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "18762faeff7122e89e0857b02f7ce6fcc0d101d5e9ad2ad7846cc01d61b7f19e"
+dependencies = [
+ "include_dir_macros",
+]
+
+[[package]]
+name = "include_dir_macros"
+version = "0.7.3"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "b139284b5cf57ecfa712bcc66950bb635b31aff41c188e8a4cfc758eca374a3f"
+dependencies = [
+ "proc-macro2",
+ "quote",
+]
+
+[[package]]
name = "indexmap"
version = "1.8.2"
source = "registry+https://github.com/rust-lang/crates.io-index"
@@ -4486,6 +4505,7 @@ dependencies = [
"colorsys",
"crossbeam",
"directories-next",
+ "include_dir",
"insta",
"interprocess",
"kdl",