Various Rust wrappers for GNOME calendar libraries
0
fork

Configure Feed

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

WIP: Incomplete interface to Camel-1.2

+38
+13
Cargo.lock
··· 9 9 checksum = "812e12b5285cc515a9c72a5c1d3b6d46a19dac5acfef5265968c166106e31dd3" 10 10 11 11 [[package]] 12 + name = "camel-sys" 13 + version = "0.0.1" 14 + dependencies = [ 15 + "gio-sys", 16 + "glib-sys", 17 + "gobject-sys", 18 + "libc", 19 + "shell-words", 20 + "system-deps", 21 + "tempfile", 22 + ] 23 + 24 + [[package]] 12 25 name = "cfg-expr" 13 26 version = "0.20.5" 14 27 source = "registry+https://github.com/rust-lang/crates.io-index"
+2
Cargo.toml
··· 4 4 "ical-glib", 5 5 "ical-glib/sys", 6 6 "soup/sys", 7 + "camel/sys", 7 8 ] 8 9 9 10 [workspace.package] ··· 13 14 14 15 [workspace.dependencies] 15 16 soup-sys = { path = "soup/sys" } 17 + camel-sys = { path = "camel/sys" }
+7
camel/Cargo.toml
··· 1 + [package] 2 + name = "camel" 3 + version.workspace = true 4 + repository.workspace = true 5 + edition.workspace = true 6 + 7 + [dependencies]
camel/gir-files/.gitkeep

This is a binary file and will not be displayed.

+1
camel/src/lib.rs
··· 1 +
+14
camel/sys/Gir.toml
··· 1 + [options] 2 + library = "Camel" 3 + version = "1.2" 4 + min_cfg_version = "1.2" 5 + target_path = "." 6 + girs_directories = ["../../gir-files", "../gir-files"] 7 + work_mode = "sys" 8 + single_version_file = true 9 + 10 + external_libraries = [ 11 + "GLib", 12 + "GObject", 13 + "GIO", 14 + ]
+1
camel/sys/src/lib.rs
··· 1 +