-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (38 loc) · 1.34 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# SPDX-License-Identifier: AGPL-3.0-or-later
#
# Copyright © 2025 Jaxydog
#
# This file is part of fvr.
#
# fvr is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public
# License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later
# version.
#
# fvr is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License along with fvr. If not,
# see <https://www.gnu.org/licenses/>.
[package]
name = "fvr"
description = "An implementation of the `ls` command-line application."
authors = ["Jaxydog"]
categories = ["command-line-utilities", "filesystem"]
keywords = ["ls", "unix"]
version = "0.1.0"
edition = "2024"
license = "AGPL-3.0-or-later"
readme = "README.md"
repository = "https://github.com/Jaxydog/fvr"
[profile.release]
codegen-units = 1
lto = "fat"
strip = "symbols"
[dependencies]
itoa = "~1.0"
owo-colors = "~4.1"
ryu = "~1.0"
supports-color = "~3.0"
time = { version = "~0.3", features = ["formatting", "local-offset", "macros"] }
thiserror = "~2.0"
uzers = { version = "~0.12", default-features = false }