mirror of
https://github.com/helix-editor/helix
synced 2026-07-26 10:50:57 +02:00
39 lines
389 B
INI
39 lines
389 B
INI
title = "example"
|
|
version = 2
|
|
|
|
[package]
|
|
name = "helix"
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
serde = "1.0"
|
|
features = [
|
|
"derive",
|
|
"rc",
|
|
]
|
|
matrix = [
|
|
[
|
|
1,
|
|
2,
|
|
],
|
|
[
|
|
3,
|
|
4,
|
|
],
|
|
]
|
|
|
|
[nested.table]
|
|
enabled = true
|
|
point = { x = 1, y = 2 }
|
|
servers = [
|
|
{ name = "a", port = 1 },
|
|
{ name = "b", port = 2 },
|
|
]
|
|
|
|
[[bin]]
|
|
name = "hx"
|
|
path = "src/main.rs"
|
|
|
|
[[bin]]
|
|
name = "xtask"
|