mirror of
https://github.com/Dummi26/mers.git
synced 2025-03-10 14:13:52 +01:00

- changed substring(a b) behavior from "b is the max length of the resulting string" to "b is the exclusive end index, unless it is negative, in which case its abs() value is the maximum length". - fixed a bug in libs/path - added the http_requests library, which can be used to make very basic GET requests - fixed a bug in the gui library that would mess up button handling - you can now escape comments using a backslash `\`: \// will turn into the literal //, \/* will turn into the literal /*. Useful for URLs (because comments work in string literals). Putting a backslash before a linebreak will also ignore that linebreak (useful in long string literals)
11 lines
276 B
TOML
Executable File
11 lines
276 B
TOML
Executable File
[package]
|
|
name = "http_requests_v1"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
mers = { path = "../../mers/" }
|
|
reqwest = { version = "0.11.16", features = ["blocking"] }
|