[package]
name = "dioxus_codemirror"
description = "A Dioxus web component that wraps the CodeMirror 6 editor."
documentation = "https://docs.rs/dioxus_codemirror/"
version.workspace = true
authors.workspace = true
edition.workspace = true
repository.workspace = true
homepage.workspace = true
readme.workspace = true
categories.workspace = true
keywords.workspace = true
license.workspace = true
[lib]
doctest = true
test = false
[lints]
workspace = true
[features]
default = []
lang-yaml = []
lang-markdown = []
lang-javascript = []
lang-css = []
lang-html = []
lang-all = [
"lang-yaml",
"lang-markdown",
"lang-javascript",
"lang-css",
"lang-html",
]
[dependencies]
dioxus = { version = "0.7", default-features = false, features = [
"macro",
"html",
"signals",
"hooks",
"document",
"asset",
] }
futures = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }