nosapi_blackbox 0.2.0

A library for working with Gameforge's blackbox string
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use percent_encoding::{AsciiSet, NON_ALPHANUMERIC};

pub const URI_COMPONENT_SET: &AsciiSet = &NON_ALPHANUMERIC
  .remove(b'-')
  .remove(b'_')
  .remove(b'.')
  .remove(b'!')
  .remove(b'~')
  .remove(b'*')
  .remove(b'\'')
  .remove(b'(')
  .remove(b')');

pub const VECTOR_STRING_LENGTH: usize = 100;