-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathCargo.toml
More file actions
56 lines (52 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
56 lines (52 loc) · 1.27 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
52
53
54
55
56
[package]
name = "picodata-pike"
version = "5.0.0"
edition = "2021"
license = "BSD-2-Clause"
authors = [
"Evgeniy Mitin <e.mitin@picodata.io>",
"Alexander Morozov <a.morozov@picodata.io>",
]
description = "Cargo plugin for Picodata plugin development"
homepage = "https://picodata.io/"
repository = "https://github.com/picodata/pike"
documentation = "https://github.com/picodata/pike"
keywords = ["picodata", "cargo", "plugin"]
categories = ["development-tools::cargo-plugins"]
readme = "README.md"
resolver = "3"
[dependencies]
clap = { version = "4", features = ["derive"] }
toml = "1.1"
serde = { version = "1", features = ["derive"] }
include_dir = "0.7"
tar = "0.4"
flate2 = "1"
serde_yaml = "0.9"
serde_json = "1"
ctrlc = "3.5"
anyhow = "1.0"
colog = "1.4.0"
log = "0.4.28"
fs_extra = "1"
libc = "0.2.184"
nix = { version = "0.31.2", features = ["signal"] }
colored = "3"
rand = "0.10"
derive_builder = "0.20"
toml_edit = "0.25.8"
regex = "1.12.3"
serde_ignored = "0.1.14"
terminal_size = "0.4.4"
ureq = { version = "3.3.0", features = ["json", "native-tls", "gzip"], default-features = false }
minijinja = "2.19.0"
[lib]
name = "pike"
path = "src/lib.rs"
[[bin]]
name = "cargo-pike"
path = "src/main.rs"
[dev-dependencies]
toml_edit = "0.25.8"
constcat = "0.6.1"
rstest = "0.26.1"