A netscape cookie file parser.
```rust // open a file directly let jar = nescookie::open("/path/to/cookie/file").unwrap();
// parse a string let content = ".pixiv.net TRUE / TRUE 1784339332 pabid 7\n"; let jar = nescookie::parse(content).unwrap();
// parse to an exist CookieJar
let builder = nescookie::CookieJarBuilder::withjar(existedjar);
// res is a CookieJar
let res = builder.open("/path/to/cookie/file").unwrap().finish(); // or builder.parse(content)...
```