eza/Cargo.toml
Ben S 2906b8676a Translate month names into the user's locale
This has been mostly done with changes in the datetime crate's suddenly
supporting locales.

It's still important that the user's locale is touched only once and
cached from that point on, so a struct in output::details has been made
public, along with that module. This will change later as that object
gains more and more uses thoughout the codes.
2015-02-10 18:14:56 +00:00

27 lines
387 B
TOML

[package]
name = "exa"
version = "0.1.0"
authors = [ "ogham@bsago.me" ]
[[bin]]
name = "exa"
[dependencies]
ansi_term = "0.4.5"
datetime = "0.1.3"
#datetime_macros = "0.1.2"
getopts = "0.2.1"
locale = "0.1.2"
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