Vendor dependencies for 0.3.0 release

This commit is contained in:
2025-09-27 10:29:08 -05:00
parent 0c8d39d483
commit 82ab7f317b
26803 changed files with 16134934 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug("Stuff({}): {}", bar)]
#[debug(skip)]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,6 @@
#[derive(derive_more::Debug)]
#[debug("Test")]
#[debug("Second")]
pub struct Foo {}
fn main() {}

View File

@@ -0,0 +1,8 @@
#[derive(derive_more::Debug)]
pub enum Foo {
#[debug("Test")]
#[debug("Second")]
Unit,
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug("Stuff({}): {}", bar)]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,8 @@
#[derive(derive_more::Debug)]
#[debug("{bar}")]
pub struct Foo {
#[debug("{bar}")]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
#[debug("Test")]
pub enum Foo {
Unit
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
#[debug(bound = "String: std::fmt::Display")]
pub struct Foo {
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,11 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug(fmt = "Stuff({}): {}", "bar")]
bar: String,
}
#[derive(derive_more::Debug)]
#[debug(fmt = "Stuff({}): {}", _0)]
pub struct Bar(String);
fn main() {}

View File

@@ -0,0 +1,10 @@
struct NoDebug<'a> {
a: &'a f64,
}
#[derive(derive_more::Debug)]
struct SomeType<'a> {
no_debug: NoDebug<'a>,
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug("Stuff()", bar)]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug("Stuff({})", .bar)]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug("Stuff({)", bar)]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,6 @@
#[derive(derive_more::Debug)]
pub union Foo {
bar: i32,
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
#[debug(unknown = "unknown")]
pub struct Foo {
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,4 @@
#[derive(derive_more::Debug)]
pub struct Foo(#[debug("Stuff({})", .0)] String);
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug("Stuff({bar:M})")]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,7 @@
#[derive(derive_more::Debug)]
pub struct Foo {
#[debug("Stuff({bars})")]
bar: String,
}
fn main() {}

View File

@@ -0,0 +1,4 @@
#[derive(derive_more::Debug)]
pub struct Foo(#[debug("Stuff({_1})")] String);
fn main() {}