4 releases
0.2.1 | Mar 18, 2024 |
---|---|
0.2.0 | Jan 13, 2024 |
0.1.1 | Jan 13, 2024 |
0.1.0 | Jan 13, 2024 |
#1087 in Network programming
233 downloads per month
Used in 6 crates
(5 directly)
6KB
ReportMe
Read this in other languages: English, 简体中文.
Description
A Rust metrics crate used in build environment. Used to know the actual usage of your crates.
Usage
Add this to your Cargo.toml
:
[build.dependencies]
reportme = "~0.2"
Example
Use Cloudflare to build server. IT IS FREE!
use std::time::Duration;
use reportme::report_build;
fn main() {
report_build("https://<YourUrl>.pages.dev/metrics",
Duration::from_secs(10),
env!("CARGO_PKG_NAME"),
env!("CARGO_PKG_VERSION"));
}
Dependencies
~10–18MB
~339K SLoC