aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorpml68 <contact@pml68.dev>2024-12-11 23:46:58 +0100
committerpml68 <contact@pml68.dev>2024-12-12 00:13:24 +0100
commitae38cd02995b0b7ab83e06e623bd14b1ab117d60 (patch)
treea01ea700ac1275e2febff0ee7f932d79a38176b1 /Cargo.toml
downloadiced_custom_highlighter-ae38cd02995b0b7ab83e06e623bd14b1ab117d60.tar.gz
feat: initial commit
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml20
1 files changed, 20 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..035019e
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,20 @@
+[package]
+name = "iced_custom_highlighter"
+description = "A custom highlighter for `iced`'s TextEditor widget that uses your application Theme's colors"
+authors = ["pml68 <contact@pml68.dev>"]
+version = "0.1.0"
+edition = "2021"
+license = "GPL-3.0-or-later"
+repository = "https://github.com/pml68/iced_custom_highlighter"
+categories = ["gui"]
+keywords = ["gui", "ui", "graphics", "interface", "widgets"]
+rust-version = "1.80"
+
+[dependencies]
+iced_core = "0.13.2"
+once_cell = "1.0"
+syntect = "5.1"
+
+[package.metadata.docs.rs]
+rustdoc-args = ["--cfg", "docsrs"]
+all-features = true