Skip to content

Commit

Permalink
remove otel from runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
rscarson committed Dec 4, 2024
1 parent 38dd26f commit 157255a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions src/runtime_builder.rs
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ impl RuntimeBuilder {
/// Set the initial seed for the crypto extension
#[cfg(feature = "crypto")]
#[cfg_attr(docsrs, doc(cfg(feature = "crypto")))]
#[must_use]
pub fn with_cryto_seed(mut self, seed: u64) -> Self {
self.0.extension_options.crypto_seed = Some(seed);
self
Expand Down Expand Up @@ -186,6 +187,7 @@ impl RuntimeBuilder {
/// Set the options for the node extension
#[cfg(feature = "node_experimental")]
#[cfg_attr(docsrs, doc(cfg(feature = "node_experimental")))]
#[must_use]
pub fn with_node_resolver(mut self, resolver: std::sync::Arc<crate::RustyResolver>) -> Self {
self.0.extension_options.node_resolver = resolver;
self
Expand Down

0 comments on commit 157255a

Please sign in to comment.