pub const DEFAULT_PORT: u16 = 8532;
pub const BIND_ADDR: &str = "0.0.0.0";
pub const DEFAULT_MIN_ITEMS: usize = 1;
pub const DEFAULT_MAX_ITEMS: usize = 20;
pub const DEFAULT_USE_EXAMPLES: bool = false;
pub const BASE64_CHARS: &[u8] = b"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
pub const OBJECT_CIRCULAR_REFS_MAX_DEPTH: usize = 1;
pub const PERCENT_CHANCE_FOR_NULLABLE_TO_BE_NULL: usize = 30;
pub const RANDOM_WORDS: &[&str] = &[
"avalanche",
"abyss",
"apex",
"aurora",
"blizzard",
"blight",
"basalt",
"breach",
"cascade",
"cinder",
"chasm",
"cipher",
"driftwood",
"dusk",
"debris",
"deluge",
"ember",
"eclipse",
"erosion",
"expanse",
"fracture",
"flare",
"fissure",
"flux",
"glacier",
"gale",
"gloom",
"gust",
"havoc",
"hollow",
"haze",
"herald",
"inferno",
"impact",
"iron",
"ichor",
"jackal",
"jolt",
"jade",
"judgement",
"kraken",
"kinetic",
"knell",
"keystone",
"labyrinth",
"lava",
"ledge",
"lumen",
"maelstrom",
"mirage",
"mantle",
"marrow",
"nebula",
"nexus",
"nadir",
"node",
"obsidian",
"omen",
"orbit",
"outpost",
"phantom",
"pyrite",
"plunge",
"pulse",
"quasar",
"quake",
"quarry",
"quicksand",
"rift",
"ruin",
"ripple",
"residue",
"solstice",
"surge",
"shard",
"shroud",
"tempest",
"tremor",
"thorn",
"tide",
"umbra",
"undertow",
"upheaval",
"uplift",
"vortex",
"void",
"vapor",
"vector",
"wraith",
"warden",
"wake",
"watershed",
"xenolith",
"xerarch",
"xenon",
"xeric",
"yonder",
"yield",
"yaw",
"yearning",
"zenith",
"zephyr",
"zero",
"zone",
];