mirror of https://github.com/helix-editor/helix
Make rust-embed optionally included based on the embed_runtime feature.
parent
62d181de78
commit
255598a2cb
|
@ -9,7 +9,7 @@ license = "MPL-2.0"
|
||||||
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
embed_runtime = []
|
embed_runtime = ["rust-embed"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
helix-syntax = { path = "../helix-syntax" }
|
helix-syntax = { path = "../helix-syntax" }
|
||||||
|
@ -28,4 +28,4 @@ serde = { version = "1.0", features = ["derive"] }
|
||||||
toml = "0.5"
|
toml = "0.5"
|
||||||
|
|
||||||
etcetera = "0.3"
|
etcetera = "0.3"
|
||||||
rust-embed="5.9.0"
|
rust-embed = { version = "5.9.0", optional = true }
|
||||||
|
|
Loading…
Reference in New Issue