-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (28 loc) · 866 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
28
29
30
31
32
[package]
name = "codex"
version = "0.1.0"
authors = ["Noah Lidell <noahlidell@gmail.com>"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
tokio = { version = "0.2", features = ["full"] }
nvim-rs = { version = "0.2.0", features = ["use_tokio"] }
rmpv = "0.4"
async-trait = "0.1"
futures = "0.3"
log = "0.4"
log-panics = { version = "2.0", features = ["with-backtrace"] }
log4rs = { version = "1.*", features = ["toml_format"]}
chrono = { version = "0.4", features = ["serde"]}
git2 = {version="0.13.*", features = ["vendored-libgit2"]}
serde = "1.0.*"
serde_derive = "1.0.*"
toml = "0.5.*"
walkdir = "2"
nom = "7.0.*"
lcs-diff = "0.1.1"
gitoxide-core = { version = "0.19.0", features = ["blocking-client"] }
regex = "1.7.0"
[dev-dependencies]
rstest = "0.12.0"
tempfile = "3.3.0"