Doodling
This commit is contained in:
3
.gitignore
vendored
Normal file
3
.gitignore
vendored
Normal file
@@ -0,0 +1,3 @@
|
||||
/Cargo.lock
|
||||
/target
|
||||
/mettrics.code-workspace
|
||||
10
Cargo.toml
Normal file
10
Cargo.toml
Normal file
@@ -0,0 +1,10 @@
|
||||
[package]
|
||||
name = "mettrics"
|
||||
version = "0.0.1"
|
||||
description = "Makes publishing meaningful metrics from applications easier."
|
||||
authors = ["Dominik Werder <dominik.werder@gmail.com>"]
|
||||
license = "GPL-3.0-only"
|
||||
edition = "2024"
|
||||
|
||||
[dependencies]
|
||||
mettrics-macros = { path = "../mettrics-macros" }
|
||||
1
src/lib.rs
Normal file
1
src/lib.rs
Normal file
@@ -0,0 +1 @@
|
||||
pub mod macros;
|
||||
2
src/macros.rs
Normal file
2
src/macros.rs
Normal file
@@ -0,0 +1,2 @@
|
||||
pub use mettrics_macros::make_metrics;
|
||||
pub use mettrics_macros::stats_struct;
|
||||
Reference in New Issue
Block a user