]> git.proxmox.com Git - cargo.git/blob - vendor/toml-0.4.5/tests/valid/arrays.json
New upstream version 0.23.0
[cargo.git] / vendor / toml-0.4.5 / tests / valid / arrays.json
1 {
2 "ints": {
3 "type": "array",
4 "value": [
5 {"type": "integer", "value": "1"},
6 {"type": "integer", "value": "2"},
7 {"type": "integer", "value": "3"}
8 ]
9 },
10 "floats": {
11 "type": "array",
12 "value": [
13 {"type": "float", "value": "1.1"},
14 {"type": "float", "value": "2.1"},
15 {"type": "float", "value": "3.1"}
16 ]
17 },
18 "strings": {
19 "type": "array",
20 "value": [
21 {"type": "string", "value": "a"},
22 {"type": "string", "value": "b"},
23 {"type": "string", "value": "c"}
24 ]
25 },
26 "dates": {
27 "type": "array",
28 "value": [
29 {"type": "datetime", "value": "1987-07-05T17:45:00Z"},
30 {"type": "datetime", "value": "1979-05-27T07:32:00Z"},
31 {"type": "datetime", "value": "2006-06-01T11:00:00Z"}
32 ]
33 }
34 }