ultron 0.2.3

A web base text-editor with strong focus on displaying multi-width characters correctly
Documentation
[package]
name = "ultron"
version = "0.2.3"
authors = ["Jovansonlee Cesar <ivanceras@gmail.com>"]
edition = "2018"
description = "A web base text-editor with strong focus on displaying multi-width characters correctly"
license = "MIT"
repository = "https://github.com/ivanceras/ultron"
documentation = "https://docs.rs/ultron"
readme = "../../README.md"
keywords = ["web", "editor", "monospace"]

[dependencies]
sauron = { version = "0.43.4", default-features = false, features = ["with-measure"] }
#sauron = { version = "0.43", path = "../../../sauron", default-features = false }
ultron-syntaxes-themes = { version = "0.2.3", path = "../syntaxes-themes" }
log = "0.4"
unicode-width = "0.1"
css-colors = "1"
nalgebra = "0.29.0"

[dependencies.web-sys]
version = "0.3"
features = [
    "Window",
    "Navigator",
    "Clipboard",
    "DataTransfer",
    "HtmlDocument",
    "DomRect",
    "Element",
]


[features]
default = ["with-navigator-clipboard", "with-dom"]
with-navigator-clipboard = [] # use this feature if only want to support latest browsers
with-dom = ["sauron/with-dom", "sauron/with-node-macro", "sauron/with-request-animation-frame"]
with-measure = ["sauron/with-measure"]