Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bwinf
medal
Commits
404a5fda
Commit
404a5fda
authored
Aug 01, 2019
by
Robert Czechowski
Browse files
Remove unused file 'configreader.rs'
parent
084e0775
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/configreader.rs
deleted
100644 → 0
View file @
084e0775
//#[cfg(feature = "preserve_order")]
//pub type Map<K, V> = linked_hash_map::LinkedHashMap<K, V>;
extern
crate
linked
-
hash
-
map
;
use
linked_hash_map
::
LinkedHashMap
#[derive(Serialize,
Deserialize)]
struct
TaskgroupJson
{
location
:
String
,
stars
:
Option
<
i32
>
,
}
#[derive(Serialize,
Deserialize)]
struct
TaskgroupJson
{
name
:
String
,
location
:
Option
<
String
>
,
variants
:
Option
<
Vec
<
Task
>>
,
locations
:
Option
<
Vec
<
String
>>
,
}
#[derive(Serialize,
Deserialize)]
struct
ContestJson
{
name
:
String
,
participation_start
:
Option
<
DateTime
<
Utc
>>
,
participation_end
:
Option
<
DateTime
<
Utc
>>
,
duration_minutes
:
i32
,
public_listing
:
Option
<
bool
>
,
tasks
:
LinkedHashMap
<
String
,
serde_json
::
Value
>
,
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment