We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aebee22 commit 263d59cCopy full SHA for 263d59c
tests/Settings.ron
@@ -18,5 +18,13 @@
18
}
19
),
20
FOO: "FOO should be overridden",
21
- bar: "I am bar"
+ bar: "I am bar",
22
+ map: {
23
+ 1: '1',
24
+ 2: '4',
25
+ 3: '9',
26
+ 4: '1',
27
+ 5: '2',
28
+ 6: '3',
29
+ },
30
)
tests/file_ron.rs
@@ -1,5 +1,6 @@
1
#![cfg(feature = "ron")]
2
3
+use std::collections::HashMap;
4
use serde_derive::Deserialize;
5
6
use std::path::PathBuf;
@@ -27,6 +28,7 @@ struct Settings {
place: Place,
#[serde(rename = "arr")]
elements: Vec<String>,
31
+ map: HashMap<u8, char>,
32
33
34
fn make() -> Config {
0 commit comments