Skip to content

Commit

Permalink
use bundled sqlite, bump to 0.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
4DA committed Nov 23, 2021
1 parent cd09392 commit c23d29a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 5 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "netupi"
version = "0.5.0"
version = "0.5.1"
edition = "2018"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -11,12 +11,15 @@ ical = { git = "https://github.com/migmedia/ical-rs", features=['ical', 'generat
uuid = { version = "0.8", features = ["v1"] }
chrono = { version = "0.4" }
rodio = { version = "0.14" }
rusqlite = "0.26"
anyhow = "1"
serde = { version = "1", features = [ "derive" ] }
serde_json = "1"
dirs = "4.0"

[dependencies.rusqlite]
version = "0.26.0"
features = ["bundled"]

# [dependencies.ical]
# version = "0.6.*"
# default-features = false
Expand Down
2 changes: 1 addition & 1 deletion src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ pub static SOUND_TASK_FINISH: BellBytes = std::include_bytes!("../res/bell.ogg")
#[cfg(target_os = "linux")]
pub static SOUND_TASK_FINISH: BellBytes = std::include_bytes!("../res/bell.ogg");
#[cfg(target_os = "windows")]
pub const SOUND_TASK_FINISH: BellBytes = std::include_bytes!("..\\res\\bell.ogg");
pub const SOUND_TASK_FINISH: BellBytes = std::include_bytes!("../res/bell.ogg");


pub fn get_work_interval(_uid: &String) -> chrono::Duration {
Expand Down

0 comments on commit c23d29a

Please sign in to comment.