# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "oclock" version = "0.1.11" authors = ["Davide Ghilardi "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Time tracking utility" readme = "README.md" keywords = [ "time-tracking", "daemon", "utility", ] license = "GPL-3.0-or-later" repository = "https://github.com/dghilardi/oclock" [lib] name = "oclock" path = "src/lib.rs" [[bin]] name = "oclock" path = "src/bin/oclock/main.rs" required-features = ["bin-cli"] [dependencies.clap] version = "4.5" features = ["derive"] optional = true [dependencies.csv] version = "1.3" optional = true [dependencies.ctrlc] version = "3.4" features = ["termination"] optional = true [dependencies.env_logger] version = "0.11" optional = true [dependencies.itertools] version = "0.13" optional = true [dependencies.log] version = "0.4" [dependencies.nng] version = "1.0" optional = true [dependencies.oclock_sqlite] version = "0.1.5" optional = true [dependencies.schedule] version = "0.1" optional = true [dependencies.serde] version = "1.0" features = ["derive"] optional = true [dependencies.serde_json] version = "1.0" optional = true [dependencies.thiserror] version = "1.0.50" [features] api = ["serde"] bin-cli = [ "clap", "env_logger", ] client = [ "nng", "api", "serde_json", ] server = [ "nng", "api", "serde_json", "schedule", "itertools", "csv", "ctrlc", "oclock_sqlite", ]