-
-
Notifications
You must be signed in to change notification settings - Fork 50
Expand file tree
/
Copy pathCargo.toml
More file actions
52 lines (41 loc) · 1.13 KB
/
Cargo.toml
File metadata and controls
52 lines (41 loc) · 1.13 KB
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
[package]
name = "sniprun"
version = "1.3.22"
authors = ["michaelb <michael.bleuez2@gmail.com>"]
rust-version = "1.65"
edition = "2018"
[features]
ignore_in_ci = []
[profile.release]
strip = true
[build-dependencies]
# cc="*"
[dependencies]
neovim-lib = "0.6.1"
log = "0.4.18"
log-panics = { version = "2.1.0", features = ["with-backtrace"] }
simple-logging = "2.0.2"
close_fds = "0.3.2"
thiserror = "1.0.69"
dirs = "5.0.1"
regex = "1.11.1" # up-to-date-regex needs a more recent Rust version
strip-ansi-escapes = "0.2.0"
libc = "0.2.79"
serial_test = "2.0.0"
# jupyter-client = { git = "https://gitlab.com/srwalker101/rust-jupyter-client.git", branch = "dev" }
rmp = "=0.8.8" # fix rmp version because it breaks MSRV
# Python3 interpreter
unindent = "0.2.3"
# Http interpreter
ureq = { version = "=2.9.0", features = ["json", "native-certs"] }
http-rest-file = "=0.5.0"
url = "=2.4.0"
# precise dependencies forced because people keep pushing semver-compatible versions
# that break MSRV
flate2 = "=1.0.22"
backtrace = "=0.3.71"
ring = "=0.17.11"
serde_bytes = "=0.11.15"
parking_lot = "=0.12.4"
parking_lot_core = "=0.9.11"
lock_api = "=0.4.13"