-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
57 lines (49 loc) · 1.41 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[package]
name = "vsm"
version = "0.1.1"
authors = ["Matt Williams <[email protected]>"]
edition = "2021"
rust-version = "1.56.0"
description = "A simple, interactive, command line vim session file manager."
homepage = "https://github.com/thebashpotato/vsm"
repository = "https://github.com/thebashpotato/vsm"
documentation = "https://docs.rs/vsm/"
keywords = ["vsm", "vim", "neovim", "mksession"]
categories = ["command-line-utilities"]
license-file = "LICENSE"
[features]
default = []
full = []
[dependencies]
serde = { version = "1.0.147", default-features = false, features = ["serde_derive"] }
envy = "0.4"
once_cell = "1.15.0"
thiserror = "1.0"
clap = { version = "4.0.18", features = ["cargo", "wrap_help"] }
log = "0.4.17"
env_logger = "0.10.0"
colored = "2"
derive-getters = "0.2.0"
toml = "0.7.2"
inquire = "0.5.2"
[dev-dependencies]
criterion = "0.4"
pretty_assertions = "1.3.0"
[package.metadata.cargo-udeps.ignore]
development = ["criterion", "pretty_assertions"]
[package.metadata.playground]
features = ["full"]
[profile.release]
codegen-units = 1
incremental = false
strip = true # Automatically strip symbols from the binary.
opt-level = "z" # Optimize for size.
lto = true # optimize at the linking stage
panic = "abort" # don't unwind the stack on panic
[profile.bench]
codegen-units = 1
incremental = false
[[bench]]
name = "benches"
harness = false
required-features = ["full"]