blob: c1c37e2253e5aead14c8f9559d40a713a80e11cf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "iris"
version = "0.1.0"
authors = ["Freya Murphy <contact@freyacat.org>"]
edition = "2021"
description = "A locking plugin manager for vim"
license-file = "LICENSE"
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = "warn"
nursery = "warn"
[dependencies]
dirs = "5"
env_logger = "0.11.6"
git2 = "0.20"
log = "0.4"
serde = "1"
thiserror = "2"
toml = "0.8"
url = "2"
|