exa/Cargo.toml

45 lines
711 B
TOML
Raw Normal View History

2014-06-28 16:24:20 +00:00
[package]
name = "exa"
2015-10-18 19:34:46 +00:00
version = "0.4.0"
2014-06-28 16:24:20 +00:00
authors = [ "ogham@bsago.me" ]
[[bin]]
name = "exa"
path = "src/bin/main.rs"
[lib]
name = "exa"
path = "src/exa.rs"
2015-01-12 00:20:28 +00:00
[dependencies]
Replace Cells with growable TextCells A recent change to ansi-term [1] means that `ANSIString`s can now hold either owned *or* borrowed data (Rust calls this the Cow type). This means that we can delay formatting ANSIStrings into ANSI-control-code-formatted strings until it's absolutely necessary. The process for doing this was: 1. Replace the `Cell` type with a `TextCell` type that holds a vector of `ANSIString` values instead of a formatted string. It still does the width tracking. 2. Rework the details module's `render` functions to emit values of this type. 3. Similarly, rework the functions that produce cells containing filenames to use a `File` value's `name` field, which is an owned `String` that can now be re-used. 4. Update the printing, formatting, and width-calculating code in the details and grid-details views to produce a table by adding vectors together instead of adding strings together, delaying the formatting as long as it can. This results in fewer allocations (as fewer `String` values are produced), and makes the API tidier (as fewer `String` values are being passed around without having their contents specified). This also paves the way to Windows support, or at least support for non-ANSI terminals: by delaying the time until strings are formatted, it'll now be easier to change *how* they are formatted. Casualties include: - Bump to ansi_term v0.7.1, which impls `PartialEq` and `Debug` on `ANSIString`. - The grid_details and lines views now need to take a vector of files, rather than a borrowed slice, so the filename cells produced now own the filename strings that get taken from files. - Fixed the signature of `File#link_target` to specify that the file produced refers to the same directory, rather than some phantom directory with the same lifetime as the file. (This was wrong from the start, but it broke nothing until now) References: [1]: ansi-term@f6a6579ba8174de1cae64d181ec04af32ba2a4f0
2015-12-17 00:25:20 +00:00
ansi_term = "0.7.1"
2015-04-23 12:46:37 +00:00
bitflags = "0.1"
2016-03-13 15:12:33 +00:00
datetime = "0.4.3"
2015-11-04 17:01:05 +00:00
getopts = "0.2.14"
lazy_static = "0.1.*"
2016-03-31 19:48:44 +00:00
libc = "0.2.9"
2016-03-13 15:12:33 +00:00
locale = "0.2.1"
natord = "1.0.7"
2015-11-04 17:01:05 +00:00
num_cpus = "0.2.7"
number_prefix = "0.2.3"
scoped_threadpool = "0.1.*"
2015-11-04 17:01:05 +00:00
term_grid = "0.1.2"
unicode-width = "0.1.3"
users = "0.5.1"
[features]
2015-01-27 15:59:22 +00:00
default = [ "git" ]
git = [ "git2" ]
[profile.release]
opt-level = 3
debug = false
lto = true
[dependencies.git2]
2015-11-04 17:01:05 +00:00
version = "0.3.2"
optional = true
2016-02-10 19:02:20 +00:00
[dependencies.zoneinfo_compiled]
2016-03-13 15:12:33 +00:00
git = "https://github.com/rust-datetime/zoneinfo-compiled.git"