aocf 0.1.21

A crate and CLI helper tool for Advent of Code
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
table! {
    moz_cookies (id) {
        id -> Integer,
        originAttributes -> Text,
        name -> Text,
        value -> Text,
        host -> Text,
        path -> Text,
        expiry -> Integer,
        lastAccessed -> Integer,
        creationTime -> Integer,
        isSecure -> Integer,
        isHttpOnly -> Integer,
        inBrowserElement -> Integer,
        sameSite -> Integer,
    }
}