exa/Cargo.toml
Ben S 0d25a90ef1 Initial work on date/time columns for files
Using the datetime crate, add an extra column to the --long view that
prints out the modified, accessed, or created timestamp for each file.
Also, let the user pick which one they want to see based on the --time
command-line option.
2015-02-09 16:33:27 +00:00

30 lines
449 B
TOML

[package]
name = "exa"
version = "0.1.0"
authors = [ "ogham@bsago.me" ]
[[bin]]
name = "exa"
[dependencies]
ansi_term = "0.4.5"
getopts = "0.2.1"
natord = "1.0.7"
number_prefix = "0.2.3"
pad = "0.1.1"
users = "0.2.3"
[features]
default = [ "git" ]
git = [ "git2" ]
[dependencies.git2]
version = "0.1.13"
optional = true
[dependencies.datetime]
path = "../rust-datetime"
[dependencies.datetime_macros]
path = "../rust-datetime/datetime-macros"