jbnimble / codingame_rust_stub

Rust stub for use in codingame to ensure the correct versions

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

codingame_rust_stub

Rust stub project configured based on Languages Versions documentation as of January 2023.

Verify the expected version:

$ rustup show

Execute the app as debug and release respectively:

cargo run
cargo run --release

rust-toolchain

The rust-toolchain.toml specifies the Rust version.

[toolchain]
channel = "1.60.0"

Documentation links:

Cargo Dependencies

The Cargo.toml specifies the libraries and versions.

[package]
name = "codingame_rust_stub"
version = "0.1.0"
edition = "2021"

[dependencies]
chrono = "0.4.19"
itertools = "0.10.0"
libc = "0.2.93"
rand = "0.8.3"
regex = "1.4.5"
time = "0.2.26"

Documentation links:

License

Unlicense.

About

Rust stub for use in codingame to ensure the correct versions

License:The Unlicense


Languages

Language:Rust 100.0%