-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (36 loc) · 1.02 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
[package]
name = "cont-append"
version = "0.0.1"
authors = ["Brandon Barker <brandon.barker@gmail.com>"]
edition = "2018"
license = "MPL-2.0"
# license-file = "LICENSE.txt"
description = ""
categories = ["command-line-utilities"]
homepage = "https://github.com/bbarker/cont-append"
repository = "https://github.com/bbarker/cont-append"
documentation = "https://docs.rs/cont-append"
[profile.release]
lto = true
codegen-units = 1
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "contappend"
path = "src/lib.rs"
[[bin]]
name = "contappend"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.39"
# byteorder = "1.4.2"
notify = "5.0.0-pre.6"
path_abs = "0.5.1"
seahorse = "1.1.1"
sfw-tools = "0.3.0"
tail = "0.3.0"
# tailcall = "0.1.6"
# tailcall = { git = "https://github.com/alecdotninja/tailcall.git", branch = "rewrite-as-loop"}
# im = "15.0.0"
[dev-dependencies.cargo-husky]
version = "1.5.0"
features = ["precommit-hook", "run-cargo-test", "run-cargo-clippy", "run-cargo-fmt"]