b8aac3c9bc
Add secondary_cursors field to Editor with insert_char_multi, delete_back_multi, delete_forward_multi methods. Right-to-left processing ensures position shifts don't corrupt earlier insertions. 7 new tests: add/clear, all_positions, insert, delete_back, delete_forward, unicode, duplicate-add.
23 lines
737 B
TOML
23 lines
737 B
TOML
[package]
|
|
name = "redox-scheme"
|
|
authors = ["4lDO2 <4lDO2@protonmail.com>"]
|
|
# Local fork: upstream 0.11.2 + Red Bear -rb0.2.5 version policy.
|
|
# See local/AGENTS.md § "Category 2 — Local forks of upstream packages".
|
|
version = "0.11.2-rb1"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
exclude = ["target"]
|
|
repository = "https://gitlab.redox-os.org/redox-os/redox-scheme"
|
|
description = "Library for writing Redox scheme daemons"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
# TODO: hashbrown separately?
|
|
default = ["std"]
|
|
std = []
|
|
|
|
[dependencies]
|
|
redox_syscall = "0.9.0-rb0.2.5"
|
|
libredox = { version = "0.1.18-rb0.2.5", default-features = false, features = ["redox_syscall", "call"] }
|