Skip to content

Commit

Permalink
update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
mockersf committed Jun 9, 2024
1 parent 1d85afc commit bf871e0
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,18 +22,18 @@ serde = ["glam/serde", "bvh2d/serde", "dep:serde"]
[dependencies]
tracing = { version = "0.1", optional = true }
hashbrown = { version = "0.14" }
glam = { version = "0.25", features = ["approx"] }
glam = { version = "0.27", features = ["approx"] }
smallvec = { version = "1.9", features = ["union", "const_generics"] }
bvh2d = { version = "0.4", git = "https://github.com/mockersf/bvh2d" }
bvh2d = { version = "0.5", git = "https://github.com/mockersf/bvh2d" }
serde = { version = "1.0", features = ["derive"], optional = true }
spade = "2.2"
geo = "0.26.0"
geo = "0.28.0"
log = "0.4"
thiserror = "1"

[dev-dependencies]
criterion = "0.5"
tracing-tracy = "0.10"
tracing-tracy = "0.11"
tracing-subscriber = "0.3"
tracing = "0.1"

Expand Down
2 changes: 1 addition & 1 deletion examples/aurora.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ fn main() {
use tracing_subscriber::layer::SubscriberExt;

tracing::subscriber::set_global_default(
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::new()),
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::default()),
)
.expect("set up the subscriber");

Expand Down
2 changes: 1 addition & 1 deletion examples/scenario_runner.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fn main() {
use tracing_subscriber::layer::SubscriberExt;

tracing::subscriber::set_global_default(
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::new()),
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::default()),
)
.expect("set up the subscriber");

Expand Down
2 changes: 1 addition & 1 deletion examples/traced/src/bin/merged.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use tracing_subscriber::layer::SubscriberExt;

fn main() {
tracing::subscriber::set_global_default(
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::new()),
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::default()),
)
.expect("set up the subscriber");

Expand Down
2 changes: 1 addition & 1 deletion examples/traced/src/bin/triangulation.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use tracing_subscriber::layer::SubscriberExt;

fn main() {
tracing::subscriber::set_global_default(
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::new()),
tracing_subscriber::registry().with(tracing_tracy::TracyLayer::default()),
)
.expect("set up the subscriber");

Expand Down

0 comments on commit bf871e0

Please sign in to comment.