[package]
edition = "2024"
name = "xeditor"
version = "0.1.0"
authors = ["Santosh Shrestha <santoshxshrestha@gmail.com>"]
build = false
exclude = [".github/"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A small GUI text editor built with Rust + Iced."
homepage = "https://github.com/santoshxshrestha/xeditor"
documentation = "https://docs.rs/xeditor"
readme = "README.md"
keywords = [
"text-editors",
"gui",
"rust",
"iced",
]
categories = ["development-tools"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/santoshxshrestha/xeditor"
[[bin]]
name = "xeditor"
path = "src/main.rs"
[dependencies.iced]
version = "0.14.0"
features = [
"highlighter",
"tokio",
]
[dependencies.rfd]
version = "0.17.2"
[dependencies.tokio]
version = "1.49.0"
features = ["full"]