A Rust procedural macro that fetches URL content at compile time and includes it as a static string. It also provides JSON parsing capabilities through the include_json_url macro.
Add this to your Cargo.toml:
[dependencies]
include_url_macro = "0.1.0"
serde = { version = "1.0", features = ["derive"] } # Required for JSON parsing
serde_json = "1.0" # Required for JSON parsingUse include_url to fetch and include raw content:
use include_url_macro::include_url;
fn main() {
// Content will be fetched at compile time
let readme = include_url!("https://raw.githubusercontent.com/rust-lang/rust/master/README.md");
println!("{}", readme);
}Use include_json_url to fetch and parse JSON content:
use include_url_macro::include_json_url;
use serde::Deserialize;
// Parse into serde_json::Value
let json = include_json_url!("https://api.example.com/data.json");
println!("API Version: {}", json["version"]);
// Parse into a specific type
#[derive(Deserialize)]
struct User {
id: u64,
name: String,
email: String,
}
let user = include_json_url!("https://api.example.com/user.json", User);
println!("User name: {}", user.name);- Fetches URL content at compile time
- Supports HTTP and HTTPS URLs
- Validates URLs before fetching
- Provides meaningful compile-time errors
- Similar usage to the built-in
include_str!macro - JSON parsing capabilities:
- Parse into generic
serde_json::Value - Parse into specific Rust types that implement
serde::Deserialize - Compile-time JSON validation (the type does not gets validated at compile time)
- Parse into generic
This macro only allows HTTP and HTTPS URLs. It performs URL validation before making any requests. Note that using this macro will make your build process dependent on network connectivity and the availability of the URLs you're including.
Both macros provide compile-time errors for:
- Invalid URLs
- Network failures
- Invalid content
- JSON parsing errors (for
include_json_url) - Type mismatches when parsing JSON into specific types
Example error messages:
error: Invalid URL: relative URL without a base
--> src/main.rs:4:20
|
4 | let data = include_url!("not-a-url");
| ^^^^^^^^^
error: Failed to parse JSON into the specified type
--> src/main.rs:12:24
|
12 | let user = include_json_url!("https://api.example.com/data.json", User);
| ^^^^^^^^^^^^^
This project is licensed under the MIT License.