Add tracing-subscriber to changelog tool
This commit is contained in:
parent
1be278e60c
commit
4c9223c1cb
2 changed files with 3 additions and 0 deletions
|
|
@ -16,6 +16,7 @@ tokio.workspace = true
|
||||||
|
|
||||||
serde = "1"
|
serde = "1"
|
||||||
webbrowser = "1"
|
webbrowser = "1"
|
||||||
|
tracing-subscriber = "0.3"
|
||||||
|
|
||||||
[dependencies.reqwest]
|
[dependencies.reqwest]
|
||||||
version = "0.12"
|
version = "0.12"
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,8 @@ use iced::widget::{
|
||||||
use iced::{Center, Element, Fill, FillPortion, Font, Task, Theme};
|
use iced::{Center, Element, Fill, FillPortion, Font, Task, Theme};
|
||||||
|
|
||||||
pub fn main() -> iced::Result {
|
pub fn main() -> iced::Result {
|
||||||
|
tracing_subscriber::fmt::init();
|
||||||
|
|
||||||
iced::application("Changelog Generator", Generator::update, Generator::view)
|
iced::application("Changelog Generator", Generator::update, Generator::view)
|
||||||
.theme(Generator::theme)
|
.theme(Generator::theme)
|
||||||
.run_with(Generator::new)
|
.run_with(Generator::new)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue