summaryrefslogtreecommitdiffstats
path: root/libimagbookmark/src/lib.rs
blob: 5b0a82efd9fdb28fe71b4828a6e8afd89cbfb0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#![deny(
    non_camel_case_types,
    non_snake_case,
    path_statements,
    trivial_numeric_casts,
    unstable_features,
    unused_allocation,
    unused_import_braces,
    unused_imports,
    unused_mut,
    unused_qualifications,
    while_true,
)]

#[macro_use] extern crate log;
extern crate semver;
extern crate url;
extern crate regex;

#[macro_use] extern crate libimagstore;
#[macro_use] extern crate libimagerror;
extern crate libimagentrylink;

module_entry_path_mod!("bookmark", "0.1.0");

pub mod collection;
pub mod error;
pub mod link;
pub mod result;