-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (25 loc) · 910 Bytes
/
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
[package]
name = "sniper"
version = "0.1.0"
edition = "2021"
authors = ["[email protected]"]
description = "CLI snippet manager inspired by YASnippet"
license = "LICENSE"
repository = "https://github.com/Niedzwiedzw/sniper"
readme = "README.md"
categories = ["cli", "snippet", "tooling"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "3.2.5", features = ["derive", "cargo"] }
derive_more = "0.99.17"
directories = "4.0.1"
eyre = "0.6.8"
itertools = "0.10.3"
nom = "7.1.1"
nom-supreme = "0.8.0"
serde = { version = "1.0.137", features = ["derive"] }
toml = { version = "0.5.9", features = ["preserve_order"] }
walkdir = "2.3.2"
tracing = "0.1.35"
tracing-appender = { version = "0.2.2", features = ["parking_lot"] }
tracing-subscriber = { version = "0.3.11", features = ["tracing", "env-filter", "local-time"] }