-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
28 lines (25 loc) · 898 Bytes
/
Cargo.toml
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
26
27
28
[package]
name = "sw"
version = "0.0.4"
edition = "2021"
authors = ["Mohamed Arish T P<[email protected]>"]
description = """
sw is a lightweight ls clone that does not have all the features that ls has
It is somehow still bigger than ls in size when compiled
Surprisingly though it does not take up as much resource when compared to ls
"""
repository = "https://www.github.com/mohamedarish/sw"
keywords = ["ls", "sw", "beginner", "terminal", "linux"]
categories = ["command-line-utilities", "directory-exploration"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
chrono = "0.4.28"
clap = { version = "4.3.23", features = ["derive"] }
tempfile = "3.8.0"
term_size = "0.3.2"
[profile.release]
opt-level = "z" # Optimize for size.
lto = true
strip = true # Automatically strip symbols from the binary.
debug = 1