SQLite-backed Key / Value Store
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

version bump for new rubin version

+11 -11
+5 -5
Cargo.lock
··· 655 655 656 656 [[package]] 657 657 name = "rubin" 658 - version = "0.3.1" 658 + version = "0.3.2" 659 659 source = "registry+https://github.com/rust-lang/crates.io-index" 660 - checksum = "42c54f8f7b8a32f0b361d6dab1933f931ea13e533f19cb33c09a6d1e7141d55b" 660 + checksum = "3946ce7c6e4cf2c4eb8ab177798cfd0a7f60bc7e54e432fc846300be2357d2c4" 661 661 dependencies = [ 662 662 "serde", 663 663 "serde_json", ··· 693 693 694 694 [[package]] 695 695 name = "safir" 696 - version = "0.8.0" 696 + version = "0.8.1" 697 697 dependencies = [ 698 698 "anyhow", 699 699 "clap", ··· 703 703 704 704 [[package]] 705 705 name = "safir-core" 706 - version = "0.2.1" 706 + version = "0.2.2" 707 707 dependencies = [ 708 708 "anyhow", 709 709 "async-trait", ··· 720 720 721 721 [[package]] 722 722 name = "safir-mem" 723 - version = "0.3.0" 723 + version = "0.3.1" 724 724 dependencies = [ 725 725 "anyhow", 726 726 "clap",
+2 -2
safir-core/Cargo.toml
··· 1 1 [package] 2 2 name = "safir-core" 3 - version = "0.2.1" 3 + version = "0.2.2" 4 4 edition = "2021" 5 5 description = "Internal lib used to build Safir and Safir-mem" 6 6 authors = ["Graham Keenan graham.keenan@outlook.com"] ··· 17 17 colored = "2.0.4" 18 18 dirs = "5.0.1" 19 19 psutil = "3.2.2" 20 - rubin = "0.3.1" 20 + rubin = "0.3.2" 21 21 serde = { version = "1.0.188", features = ["derive"] } 22 22 serde_json = "1.0.105" 23 23 sysinfo = "0.29.9"
+2 -2
safir-mem/Cargo.toml
··· 1 1 [package] 2 2 name = "safir-mem" 3 - version = "0.3.0" 3 + version = "0.3.1" 4 4 edition = "2021" 5 5 authors = ["Graham Keenan graham.keenan@outlook.com"] 6 6 license = "MIT OR Apache-2.0" ··· 16 16 [dependencies] 17 17 clap = { version = "4.2.5" , features = ["derive"] } 18 18 tokio = { version = "1.28.2", features = ["full"] } 19 - safir-core = { version = "0.2.1", path = "../safir-core" } 19 + safir-core = { version = "0.2.2", path = "../safir-core" } 20 20 anyhow = "1.0.75"
+2 -2
safir/Cargo.toml
··· 1 1 [package] 2 2 name = "safir" 3 - version = "0.8.0" 3 + version = "0.8.1" 4 4 edition = "2021" 5 5 authors = ["Graham Keenan graham.keenan@outlook.com"] 6 6 license = "MIT OR Apache-2.0" ··· 16 16 [dependencies] 17 17 clap = { version = "4.2.5" , features = ["derive"] } 18 18 tokio = { version = "1.28.2", features = ["full"] } 19 - safir-core = { version = "0.2.1", path = "../safir-core" } 19 + safir-core = { version = "0.2.2", path = "../safir-core" } 20 20 anyhow = "1.0.75"