snapshot before rebranding
This commit is contained in:
@@ -8,6 +8,7 @@ homepage.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Instrumentation implementation for bizinikiwi."
|
||||
readme = "README.md"
|
||||
documentation = "https://docs.rs/pezsc-tracing"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
@@ -53,8 +54,8 @@ thiserror = { workspace = true }
|
||||
tracing = { workspace = true, default-features = true }
|
||||
tracing-log = { workspace = true, features = ["interest-cache"] }
|
||||
tracing-subscriber = { workspace = true, features = [
|
||||
"env-filter",
|
||||
"parking_lot",
|
||||
"env-filter",
|
||||
"parking_lot",
|
||||
] }
|
||||
|
||||
[dev-dependencies]
|
||||
@@ -64,8 +65,8 @@ tracing-subscriber = { workspace = true, features = ["chrono", "parking_lot"] }
|
||||
|
||||
[features]
|
||||
runtime-benchmarks = [
|
||||
"pezsc-client-api/runtime-benchmarks",
|
||||
"pezsp-api/runtime-benchmarks",
|
||||
"pezsp-blockchain/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
"pezsc-client-api/runtime-benchmarks",
|
||||
"pezsp-api/runtime-benchmarks",
|
||||
"pezsp-blockchain/runtime-benchmarks",
|
||||
"pezsp-runtime/runtime-benchmarks",
|
||||
]
|
||||
|
||||
@@ -7,6 +7,7 @@ license = "Apache-2.0"
|
||||
homepage.workspace = true
|
||||
repository.workspace = true
|
||||
description = "Helper macros for Bizinikiwi's client CLI"
|
||||
documentation = "https://docs.rs/pezsc-tracing-proc-macro"
|
||||
|
||||
[lints]
|
||||
workspace = true
|
||||
@@ -22,8 +23,8 @@ proc-macro-crate = { workspace = true }
|
||||
proc-macro2 = { workspace = true }
|
||||
quote = { features = ["proc-macro"], workspace = true }
|
||||
syn = { features = [
|
||||
"extra-traits",
|
||||
"full",
|
||||
"parsing",
|
||||
"proc-macro",
|
||||
"extra-traits",
|
||||
"full",
|
||||
"parsing",
|
||||
"proc-macro",
|
||||
], workspace = true }
|
||||
|
||||
@@ -145,7 +145,7 @@ fn resolve_sc_tracing() -> Result<Path> {
|
||||
match crate_name("pezkuwi-sdk") {
|
||||
Ok(FoundCrate::Itself) => syn::parse_str("pezkuwi_sdk::pezsc_tracing"),
|
||||
Ok(FoundCrate::Name(sdk_name)) => syn::parse_str(&format!("{}::pezsc_tracing", sdk_name)),
|
||||
Err(_) => match crate_name("sc-tracing") {
|
||||
Err(_) => match crate_name("pezsc-tracing") {
|
||||
Ok(FoundCrate::Itself) => syn::parse_str("pezsc_tracing"),
|
||||
Ok(FoundCrate::Name(name)) => syn::parse_str(&name),
|
||||
Err(e) => Err(syn::Error::new(Span::call_site(), e)),
|
||||
|
||||
Reference in New Issue
Block a user