Skip to content

A crate for parsing and generating YGOPro deck URLs in the YDKE format.

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT
Notifications You must be signed in to change notification settings

Satellaa/ydke_parser

Repository files navigation

Maintenance Tests Docs

ydke_parser

A crate for parsing and generating YGOPro deck URLs in the YDKE format.

Example

use ydke_parser::{Deck, parse_url, to_url};

// Create a deck
let deck = Deck {
    main: vec![26077387, 37351133],
    extra: vec![63288574],
    side: vec![37351133],
};

let url1 = "ydke://y+iNAd3uOQI=!/rTFAw==!3e45Ag==!";
// Convert to URL
let url2 = to_url(&deck);

// Parse the URL back into a deck
let parsed_deck1 = parse_url(&url1).unwrap();
let parsed_deck2 = parse_url(&url2).unwrap();
assert_eq!(deck, parsed_deck1);
assert_eq!(deck, parsed_deck2);

About

A crate for parsing and generating YGOPro deck URLs in the YDKE format.

Topics

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Stars

Watchers

Forks

Packages

No packages published

Languages