diff options
author | 2023-09-19 20:48:50 +0200 | |
---|---|---|
committer | 2023-09-19 20:48:50 +0200 | |
commit | f806d001e6fb44b5a45029ca257261e6e0d4d4b2 (patch) | |
tree | 4a9292fde7f8db76915d3596d326eb71ff7b92a9 /highlighter/Cargo.toml | |
parent | c0a141ab026f5686d6bd92c8807b174396cb9105 (diff) | |
download | iced-f806d001e6fb44b5a45029ca257261e6e0d4d4b2.tar.gz iced-f806d001e6fb44b5a45029ca257261e6e0d4d4b2.tar.bz2 iced-f806d001e6fb44b5a45029ca257261e6e0d4d4b2.zip |
Introduce new `iced_highlighter` subcrate
Diffstat (limited to 'highlighter/Cargo.toml')
-rw-r--r-- | highlighter/Cargo.toml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/highlighter/Cargo.toml b/highlighter/Cargo.toml new file mode 100644 index 00000000..311d2998 --- /dev/null +++ b/highlighter/Cargo.toml @@ -0,0 +1,16 @@ +[package] +name = "iced_highlighter" +description = "A syntax higlighter for iced" +version.workspace = true +authors.workspace = true +edition.workspace = true +license.workspace = true +repository.workspace = true +homepage.workspace = true +categories.workspace = true +keywords.workspace = true + +[dependencies] +iced_core.workspace = true + +syntect.workspace = true |