File: Cargo.toml.orig

package info (click to toggle)
rust-rust-ini 0.21.1-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 204 kB
  • sloc: makefile: 4
file content (42 lines) | stat: -rw-r--r-- 866 bytes parent folder | download
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
[package]
name = "rust-ini"
version = "0.21.1"
authors = ["Y. T. Chung <zonyitoo@gmail.com>"]
description = "An Ini configuration file parsing library in Rust"
repository = "https://github.com/zonyitoo/rust-ini"
documentation = "https://docs.rs/rust-ini/"
keywords = ["ini", "configuration", "conf", "cfg"]
license = "MIT"
edition = "2018"
rust-version = "1.64"

[lib]
name = "ini"
test = true

[dependencies]
cfg-if = "1.0"
unicase = { version = "2.6", optional = true }
ordered-multimap = "0.7"
trim-in-place = "0.1.7"

[features]
default = []
# Allowing inline comments
#
# For example:
#
# [A]
# Key=value # COMMENTS
#
# This was a default feature < 0.14.0
inline-comment = []
# Case-insensitive Sections and Property Keys
case-insensitive = ["unicase"]
# Allowing brackets in sections names
#
# For example:
#
# [[A]]
# Key=value
brackets-in-section-names = []