a70e68c7bd
* Smolmix documentation * Add smolmix docs: landing page, tutorials, and developer page links * Add Exit Gateway services page (NR vs IPR) and link from existing docs * Update auto-generated command and API outputs * Reorg of tutorials and architecture pages * License information + remove TODO from docs.rs visibile comment + reorg readme * Add versions file for doc-wide versioning * Relative -> absolute links * Relative -> absolute links * Update license + add old tutorial code as examples * Streamline smolmix docs * Clippy * Clean up doc comments * Last pass * Add larger file download to list * set new versions * Clippy * Remove blake pin from docs + add version range to root Cargo.toml * Format example logging * Remove crate blocked component * Loose whitespace * Add doc verification script for inline mdx * Formatting * Components regen * Reorg + tighten text * Voicing cohesion pass + remove bloated examples * Voicing cont. * Reduce max download size * Small suggested clarifications * Max/docs voicing consistency (#6769) * Reduce max download size * voicing consistency across docs * New landing order w smolmix * Tweaks * Final tweaks
32 lines
1.1 KiB
TypeScript
32 lines
1.1 KiB
TypeScript
/**
|
|
* Centralised version constants for documentation.
|
|
*
|
|
* Components (VersionBanner, CodeVerified, etc.) import from here so there is a
|
|
* single place to update on each release.
|
|
*
|
|
* Fenced code blocks still hardcode versions for copy-paste friendliness.
|
|
* When bumping versions here, also update the Cargo.toml snippets in:
|
|
*
|
|
* pages/developers/rust/importing.mdx
|
|
* pages/developers/rust/tcpproxy.mdx
|
|
* pages/developers/rust/mixnet/tutorial.mdx
|
|
* pages/developers/rust/stream/tutorial.mdx
|
|
* pages/developers/rust/client-pool/tutorial.mdx
|
|
* public/llms.txt
|
|
*
|
|
* RUST_MSRV is imported directly by all pages that display the Rust version,
|
|
* so no manual file edits are needed for MSRV bumps:
|
|
*
|
|
* pages/developers/smolmix.mdx
|
|
* pages/developers/rust/importing.mdx
|
|
*/
|
|
|
|
// nym-sdk / nym-bin-common / nym-network-defaults (Rust SDK crates)
|
|
export const NYM_SDK_VERSION = "1.21.0";
|
|
|
|
// smolmix standalone crate
|
|
export const SMOLMIX_VERSION = "1.21.0";
|
|
|
|
// Minimum supported Rust version (matches workspace rust-version in root Cargo.toml)
|
|
export const RUST_MSRV = "1.87";
|