cargo update
This commit is contained in:
parent
9975448ab6
commit
2cc0337450
2 changed files with 6 additions and 4 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
target
|
||||
Cargo.lock
|
||||
*.db
|
||||
*.db
|
||||
diesel
|
||||
|
|
|
@ -4,17 +4,18 @@ version = "0.1.0"
|
|||
edition = "2021"
|
||||
|
||||
[dependencies]
|
||||
iced = {git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced","image","markdown"]}
|
||||
iced = {git = "https://github.com/iced-rs/iced", branch = "master", features = ["advanced","image","markdown","tokio"]}
|
||||
reqwest = { version = "0.12", features= ["blocking"]}
|
||||
rss = "2.0"
|
||||
web-sys = "0.3.70"
|
||||
mdka = "1.2.10" #Not Sure if this is useful...
|
||||
rusqlite = {version="0.32",features=['bundled']}
|
||||
rusqlite = {version=">=0.36",features=['bundled']}
|
||||
html2md = "0.2"
|
||||
regex = "1"
|
||||
exemplar = ">=0.35.0"
|
||||
|
||||
[profile.dev]
|
||||
opt-level = 3
|
||||
|
||||
[profile.release]
|
||||
opt-level = 3
|
||||
opt-level = 3
|
||||
|
|
Loading…
Reference in a new issue