37 lines
923 B
TOML
Executable File
37 lines
923 B
TOML
Executable File
[package]
|
|
name = "scitano"
|
|
version = "2.0.0"
|
|
edition = "2021"
|
|
description = "Scitano v2.0 Visual Overhaul - SciTE menus, strict Nano hotkeys, Geany features in Rust/iced"
|
|
license = "GPL-2.0-only"
|
|
repository = "https://git.dcos.net/dcosnet/scitano/"
|
|
rust-version = "1.75"
|
|
categories = ["text-editors", "development-tools"]
|
|
keywords = ["editor", "nano", "scite", "iced", "text-editor"]
|
|
|
|
[dependencies]
|
|
iced = { version = "0.13", features = ["highlighter", "advanced"] }
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = true
|
|
codegen-units = 1
|
|
strip = true
|
|
panic = "abort"
|
|
|
|
[profile.dev]
|
|
opt-level = 0
|
|
debug = true
|
|
|
|
[lints.clippy]
|
|
# SEI CERT / MISRA-aligned clippy rules
|
|
unwrap_used = "warn"
|
|
expect_used = "warn"
|
|
indexing_slicing = "warn"
|
|
arithmetic_side_effects = "warn"
|
|
cast_lossless = "warn"
|
|
cast_possible_truncation = "warn"
|
|
cast_possible_wrap = "warn"
|
|
cast_sign_loss = "warn"
|
|
integer_division = "warn"
|
|
manual_range_contains = "warn" |