diff options
| author | diogo464 <[email protected]> | 2025-12-05 19:29:52 +0000 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2025-12-05 19:29:52 +0000 |
| commit | 3a3d635adddf5cb16a93827e688e061613a083d7 (patch) | |
| tree | e6be0a075f80d5cfb11b1882e0086727bfe699e9 /Cargo.lock | |
| parent | b609a315e7921dcc712da6955890f4dc7c2c4b9f (diff) | |
reworked logging
Diffstat (limited to 'Cargo.lock')
| -rw-r--r-- | Cargo.lock | 125 |
1 files changed, 125 insertions, 0 deletions
| @@ -165,6 +165,8 @@ dependencies = [ | |||
| 165 | "serde", | 165 | "serde", |
| 166 | "serde-json-core", | 166 | "serde-json-core", |
| 167 | "static_cell", | 167 | "static_cell", |
| 168 | "tracing", | ||
| 169 | "tracing-subscriber", | ||
| 168 | ] | 170 | ] |
| 169 | 171 | ||
| 170 | [[package]] | 172 | [[package]] |
| @@ -381,6 +383,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 381 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" | 383 | checksum = "b9e0384b61958566e926dc50660321d12159025e767c18e043daf26b70104c39" |
| 382 | 384 | ||
| 383 | [[package]] | 385 | [[package]] |
| 386 | name = "lazy_static" | ||
| 387 | version = "1.5.0" | ||
| 388 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 389 | checksum = "bbd2bcb4c963f2ddae06a2efc7e9f3591312473c50c6685e1f298068316e66fe" | ||
| 390 | |||
| 391 | [[package]] | ||
| 384 | name = "libc" | 392 | name = "libc" |
| 385 | version = "0.2.178" | 393 | version = "0.2.178" |
| 386 | source = "registry+https://github.com/rust-lang/crates.io-index" | 394 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -393,6 +401,12 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 393 | checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" | 401 | checksum = "11d3d7f243d5c5a8b9bb5d6dd2b1602c0cb0b9db1621bafc7ed66e35ff9fe092" |
| 394 | 402 | ||
| 395 | [[package]] | 403 | [[package]] |
| 404 | name = "log" | ||
| 405 | version = "0.4.29" | ||
| 406 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 407 | checksum = "5e5032e24019045c762d3c0f28f5b6b8bbf38563a65908389bf7978758920897" | ||
| 408 | |||
| 409 | [[package]] | ||
| 396 | name = "managed" | 410 | name = "managed" |
| 397 | version = "0.8.0" | 411 | version = "0.8.0" |
| 398 | source = "registry+https://github.com/rust-lang/crates.io-index" | 412 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -414,6 +428,27 @@ source = "registry+https://github.com/rust-lang/crates.io-index" | |||
| 414 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" | 428 | checksum = "8d5439c4ad607c3c23abf66de8c8bf57ba8adcd1f129e699851a6e43935d339d" |
| 415 | 429 | ||
| 416 | [[package]] | 430 | [[package]] |
| 431 | name = "nu-ansi-term" | ||
| 432 | version = "0.50.3" | ||
| 433 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 434 | checksum = "7957b9740744892f114936ab4a57b3f487491bbeafaf8083688b16841a4240e5" | ||
| 435 | dependencies = [ | ||
| 436 | "windows-sys", | ||
| 437 | ] | ||
| 438 | |||
| 439 | [[package]] | ||
| 440 | name = "once_cell" | ||
| 441 | version = "1.21.3" | ||
| 442 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 443 | checksum = "42f5e15c9953c5e4ccceeb2e7382a716482c34515315f7b03532b8b4e8393d2d" | ||
| 444 | |||
| 445 | [[package]] | ||
| 446 | name = "pin-project-lite" | ||
| 447 | version = "0.2.16" | ||
| 448 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 449 | checksum = "3b3cff922bd51709b605d9ead9aa71031d81447142d828eb4a6eba76fe619f9b" | ||
| 450 | |||
| 451 | [[package]] | ||
| 417 | name = "portable-atomic" | 452 | name = "portable-atomic" |
| 418 | version = "1.11.1" | 453 | version = "1.11.1" |
| 419 | source = "registry+https://github.com/rust-lang/crates.io-index" | 454 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -551,6 +586,21 @@ dependencies = [ | |||
| 551 | ] | 586 | ] |
| 552 | 587 | ||
| 553 | [[package]] | 588 | [[package]] |
| 589 | name = "sharded-slab" | ||
| 590 | version = "0.1.7" | ||
| 591 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 592 | checksum = "f40ca3c46823713e0d4209592e8d6e826aa57e928f09752619fc696c499637f6" | ||
| 593 | dependencies = [ | ||
| 594 | "lazy_static", | ||
| 595 | ] | ||
| 596 | |||
| 597 | [[package]] | ||
| 598 | name = "smallvec" | ||
| 599 | version = "1.15.1" | ||
| 600 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 601 | checksum = "67b1b7a3b5fe4f1376887184045fcf45c69e92af734b7aaddc05fb777b6fbd03" | ||
| 602 | |||
| 603 | [[package]] | ||
| 554 | name = "smoltcp" | 604 | name = "smoltcp" |
| 555 | version = "0.12.0" | 605 | version = "0.12.0" |
| 556 | source = "registry+https://github.com/rust-lang/crates.io-index" | 606 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -617,12 +667,72 @@ dependencies = [ | |||
| 617 | ] | 667 | ] |
| 618 | 668 | ||
| 619 | [[package]] | 669 | [[package]] |
| 670 | name = "thread_local" | ||
| 671 | version = "1.1.9" | ||
| 672 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 673 | checksum = "f60246a4944f24f6e018aa17cdeffb7818b76356965d03b07d6a9886e8962185" | ||
| 674 | dependencies = [ | ||
| 675 | "cfg-if", | ||
| 676 | ] | ||
| 677 | |||
| 678 | [[package]] | ||
| 679 | name = "tracing" | ||
| 680 | version = "0.1.43" | ||
| 681 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 682 | checksum = "2d15d90a0b5c19378952d479dc858407149d7bb45a14de0142f6c534b16fc647" | ||
| 683 | dependencies = [ | ||
| 684 | "pin-project-lite", | ||
| 685 | "tracing-core", | ||
| 686 | ] | ||
| 687 | |||
| 688 | [[package]] | ||
| 689 | name = "tracing-core" | ||
| 690 | version = "0.1.35" | ||
| 691 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 692 | checksum = "7a04e24fab5c89c6a36eb8558c9656f30d81de51dfa4d3b45f26b21d61fa0a6c" | ||
| 693 | dependencies = [ | ||
| 694 | "once_cell", | ||
| 695 | "valuable", | ||
| 696 | ] | ||
| 697 | |||
| 698 | [[package]] | ||
| 699 | name = "tracing-log" | ||
| 700 | version = "0.2.0" | ||
| 701 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 702 | checksum = "ee855f1f400bd0e5c02d150ae5de3840039a3f54b025156404e34c23c03f47c3" | ||
| 703 | dependencies = [ | ||
| 704 | "log", | ||
| 705 | "once_cell", | ||
| 706 | "tracing-core", | ||
| 707 | ] | ||
| 708 | |||
| 709 | [[package]] | ||
| 710 | name = "tracing-subscriber" | ||
| 711 | version = "0.3.22" | ||
| 712 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 713 | checksum = "2f30143827ddab0d256fd843b7a66d164e9f271cfa0dde49142c5ca0ca291f1e" | ||
| 714 | dependencies = [ | ||
| 715 | "nu-ansi-term", | ||
| 716 | "sharded-slab", | ||
| 717 | "smallvec", | ||
| 718 | "thread_local", | ||
| 719 | "tracing-core", | ||
| 720 | "tracing-log", | ||
| 721 | ] | ||
| 722 | |||
| 723 | [[package]] | ||
| 620 | name = "unicode-ident" | 724 | name = "unicode-ident" |
| 621 | version = "1.0.22" | 725 | version = "1.0.22" |
| 622 | source = "registry+https://github.com/rust-lang/crates.io-index" | 726 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| 623 | checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" | 727 | checksum = "9312f7c4f6ff9069b165498234ce8be658059c6728633667c526e27dc2cf1df5" |
| 624 | 728 | ||
| 625 | [[package]] | 729 | [[package]] |
| 730 | name = "valuable" | ||
| 731 | version = "0.1.1" | ||
| 732 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 733 | checksum = "ba73ea9cf16a25df0c8caa16c51acb937d5712a8429db78a3ee29d5dcacd3a65" | ||
| 734 | |||
| 735 | [[package]] | ||
| 626 | name = "void" | 736 | name = "void" |
| 627 | version = "1.0.2" | 737 | version = "1.0.2" |
| 628 | source = "registry+https://github.com/rust-lang/crates.io-index" | 738 | source = "registry+https://github.com/rust-lang/crates.io-index" |
| @@ -638,6 +748,21 @@ dependencies = [ | |||
| 638 | ] | 748 | ] |
| 639 | 749 | ||
| 640 | [[package]] | 750 | [[package]] |
| 751 | name = "windows-link" | ||
| 752 | version = "0.2.1" | ||
| 753 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 754 | checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" | ||
| 755 | |||
| 756 | [[package]] | ||
| 757 | name = "windows-sys" | ||
| 758 | version = "0.61.2" | ||
| 759 | source = "registry+https://github.com/rust-lang/crates.io-index" | ||
| 760 | checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" | ||
| 761 | dependencies = [ | ||
| 762 | "windows-link", | ||
| 763 | ] | ||
| 764 | |||
| 765 | [[package]] | ||
| 641 | name = "wit-bindgen" | 766 | name = "wit-bindgen" |
| 642 | version = "0.46.0" | 767 | version = "0.46.0" |
| 643 | source = "registry+https://github.com/rust-lang/crates.io-index" | 768 | source = "registry+https://github.com/rust-lang/crates.io-index" |
