serde_closure 0.3.3

Serializable and debuggable closures. This library provides macros that wrap closures to make them serializable and debuggable.
Documentation
fn main() {
	println!("cargo:rerun-if-changed=build.rs");

	nightly();
}

#[rustversion::nightly]
fn nightly() {
	println!("cargo:rustc-cfg=nightly");
}
#[rustversion::not(nightly)]
fn nightly() {}