summaryrefslogtreecommitdiffstats
path: root/librepology/src/lib.rs
blob: 8ca04dacc5b21a55e67c8301c18aa67698388c97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate curl;
extern crate serde;
extern crate serde_json;
extern crate thiserror;
extern crate url;
extern crate url_serde;

#[macro_use]
extern crate serde_derive;
#[macro_use]
extern crate log;
#[macro_use]
extern crate derive_more;
#[macro_use]
extern crate derive_new;

pub mod v1;