You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Cargo.toml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[package]
2
2
name = "ini"
3
-
version = "1.0.2"
3
+
version = "1.1.0"
4
4
authors = ["QEDK <qedk.en@gmail.com>"]
5
5
edition = "2018"
6
6
description = "A simple macro built on top of configparser to load and parse ini files. You can use this to write Rust programs which can be customized by end users easily."
// Note the extra unwrap here, which is required because our HashMap is inside a Result type.
90
+
```
91
+
59
92
## Supported datatypes
60
93
`configparser` does not guess the datatype of values in configuration files and stores everything as strings, same applies to `ini`. If you need getters that parse the values for you, you might want to use `configparser`. You can ofcourse just choose to parse the string values yourself.
0 commit comments