scryfall-client 0.1.0

an wrapper for the scryfall API
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
pub mod cache;
pub mod card;
pub mod client;
pub mod decklist;
pub mod search_builder;
pub mod test;

#[cfg(test)]
mod tests {
    use std::collections::HashMap;

    #[test]
    fn it_works() {
        let mut map = HashMap::new();
        map.insert("idk", 2);
        println!("{:?}", serde_json::to_string(&map));
    }
}