diff options
| author | diogo464 <[email protected]> | 2024-01-01 18:13:30 +0000 |
|---|---|---|
| committer | diogo464 <[email protected]> | 2024-01-01 18:13:30 +0000 |
| commit | 48d563959b3d6cbe6edc7921cfa1fd22935177d2 (patch) | |
| tree | 59a0518e1309f073172870652bbd00a935065e3c /Cargo.toml | |
init
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..221fcd3 --- /dev/null +++ b/Cargo.toml | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | [package] | ||
| 2 | name = "zsnap" | ||
| 3 | version = "0.1.0" | ||
| 4 | edition = "2021" | ||
| 5 | |||
| 6 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html | ||
| 7 | |||
| 8 | [dependencies] | ||
| 9 | chrono = "0.4.31" | ||
| 10 | clap = { version = "4.4.12", features = ["env", "derive"] } | ||
| 11 | color-eyre = "0.6.2" | ||
| 12 | cron = "0.12.0" | ||
| 13 | eyre = "0.6.11" | ||
| 14 | serde = { version = "1.0.193", features = ["derive"] } | ||
| 15 | toml = "0.8.8" | ||
| 16 | tracing = "0.1.40" | ||
| 17 | tracing-subscriber = { version = "0.3.18", features = ["env-filter"] } | ||
| 18 | |||
| 19 | [profile.release] | ||
| 20 | strip = true | ||
| 21 | opt-level = "z" | ||
