-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (21 loc) · 768 Bytes
/
Cargo.toml
File metadata and controls
25 lines (21 loc) · 768 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "launchd"
version = "0.3.0"
authors = ["Koen van Wel <koenvwel@gmail.com>"]
edition = "2018"
repository = "https://github.com/koenichiwa/launchd"
readme = "README.md"
description = "Rust library for creating and parsing launchd files"
keywords = ["launchd", "schedule", "repeat", "periodic", "macOS"]
license = "MIT"
[package.metadata.cargo-all-features]
skip_feature_sets = [["io", "serde"], ["io", "plist"]]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["io"]
io =["serde", "plist"]
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
plist = { version = "1", optional = true }
cron = { version = "0.12", optional = true }
thiserror = "1.0"