-
Notifications
You must be signed in to change notification settings - Fork 88
/
Cargo.toml
47 lines (39 loc) · 1.04 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[workspace]
resolver = "2"
members = ["xtask"]
[package]
name = "kibi"
version = "0.2.2"
rust-version = "1.80"
authors = ["Ilaï Deutel"]
license = "MIT OR Apache-2.0"
edition = "2018"
description = "A text editor in less than 1024 lines of code with syntax highlighting, search and more."
repository = "https://github.com/ilai-deutel/kibi"
readme = "README.md"
keywords = ["editor", "terminal", "text-editor"]
categories = ["text-editors", "development-tools"]
include = ["src/**/*", "Cargo.toml", "LICENSE*", "COPYRIGHT"]
[dependencies]
unicode-width = "0.2.0"
[target.'cfg(unix)'.dependencies]
libc = "0.2.162"
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.9", default-features = false, features = ["wincon"] }
winapi-util = "0.1.9"
[dev-dependencies]
tempfile = "3.13.0"
[badges]
maintenance = { status = "actively-developed" }
[lints]
workspace = true
[workspace.lints.clippy]
correctness = "deny"
style = "deny"
complexity = "deny"
perf = "deny"
pedantic = "deny"
cargo = "deny"
suspicious = "warn"
nursery = "warn"
restriction = "allow"