Skip to content

Commit

Permalink
Update tracing-subscriber optional dependency
Browse files Browse the repository at this point in the history
Update `tracing-subscriber` optional dependency from version 0.2 to
version 0.3.
  • Loading branch information
jsdanielh committed May 17, 2023
1 parent 8319f4b commit 5c6ba38
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
### Features

### Improvements
- [\#373](https://github.com/arkworks-rs/snark/pull/373) Update `tracing-subscriber` dependency from 0.2 to 0.3.

### Bug fixes

Expand Down
2 changes: 1 addition & 1 deletion relations/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ edition = "2021"
ark-ff = { version = "0.4.0", default-features = false }
ark-std = { version = "0.4.0", default-features = false }
tracing = { version = "0.1", default-features = false }
tracing-subscriber = { version = "0.2", default-features = false, optional = true }
tracing-subscriber = { version = "0.3", default-features = false, optional = true }

[dev-dependencies]
ark-test-curves = { version = "0.4.0", default-features = false, features = [ "bls12_381_scalar_field" ] }
Expand Down
2 changes: 1 addition & 1 deletion relations/src/r1cs/trace.rs
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ where

/// Notifies this layer that a new span was constructed with the given
/// `Attributes` and `Id`.
fn new_span(&self, _attrs: &span::Attributes<'_>, _id: &span::Id, _ctx: layer::Context<'_, S>) {
fn on_new_span(&self, _attrs: &span::Attributes<'_>, _id: &span::Id, _ctx: layer::Context<'_, S>) {
}

#[allow(unsafe_code, trivial_casts)]
Expand Down

0 comments on commit 5c6ba38

Please sign in to comment.