aboutsummaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authordiogo464 <[email protected]>2024-01-01 18:13:30 +0000
committerdiogo464 <[email protected]>2024-01-01 18:13:30 +0000
commit48d563959b3d6cbe6edc7921cfa1fd22935177d2 (patch)
tree59a0518e1309f073172870652bbd00a935065e3c /Cargo.toml
init
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml21
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]
2name = "zsnap"
3version = "0.1.0"
4edition = "2021"
5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8[dependencies]
9chrono = "0.4.31"
10clap = { version = "4.4.12", features = ["env", "derive"] }
11color-eyre = "0.6.2"
12cron = "0.12.0"
13eyre = "0.6.11"
14serde = { version = "1.0.193", features = ["derive"] }
15toml = "0.8.8"
16tracing = "0.1.40"
17tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
18
19[profile.release]
20strip = true
21opt-level = "z"