TOML

Little Eye detects TOML when you copy them. Typed config files — Cargo.toml, pyproject.toml, and friends.

Examples

Cargo.toml
[package]
name = "foo"
version = "0.1.0"
edition = "2021"

[dependencies]
serde = "1.0"
pyproject.toml
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "x"
version = "0.1"
.cargo/config.toml
[build]
target = "x86_64-unknown-linux-gnu"

[target.x86_64-pc-windows-msvc]
linker = "lld"
rustfmt.toml
edition = "2021"
max_width = 100
tab_spaces = 4
.crates.toml
[v1]
"serde 1.0.0 (registry+https://github.com/rust-lang/crates.io-index)" = ["foo"]
netlify.toml
[build]
command = "npm run build"
publish = "dist"

[[redirects]]
from = "/old"
to = "/new"
Hugo `config.toml`
baseURL = "https://example.org"
title = "My Site"
theme = "ananke"

Related detectors

← All Data & Formats detectors