-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
44 lines (40 loc) · 959 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
33
34
35
36
37
38
39
40
41
42
43
44
[package]
name = "picodata-pike"
version = "1.0.0"
edition = "2021"
license = "BSD-2-Clause"
authors = [
"Evgeniy Mitin <[email protected]>",
"Alexander Morozov <[email protected]>",
]
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"
rust-version = "1.81.0"
[dependencies]
clap = { version = "4", features = ["derive"] }
toml = "0.8"
serde = { version = "1", features = ["derive"] }
include_dir = "0.7"
liquid = "0.26"
tar = "0.4"
flate2 = "1"
serde_yaml = "0.9"
serde_json = "1"
ctrlc = "3.2"
anyhow = "1.0"
colog = "1.3.0"
log = "0.4.22"
fs_extra = "1"
[lib]
name = "pike"
path = "src/lib.rs"
[[bin]]
name = "cargo-pike"
path = "src/main.rs"
[dev-dependencies]
constcat = "0.5.1"