-
Notifications
You must be signed in to change notification settings - Fork 3
/
Cargo.toml
76 lines (68 loc) · 1.61 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[package]
name = "ion"
version = "0.1.21"
edition = "2021"
publish = false
authors = ["Roger Luo <[email protected]>"]
description = "a CLI toolbox for Julia developer"
[workspace]
members = [
"ion_derive",
"julia-semver",
"xtask",
]
[package.metadata.bundle]
identifier = "dev.rogerluo.ion"
resources = ["resources/*"]
[profile.release]
lto = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name = "ion"
path = "src/ion/lib.rs"
[dependencies]
anyhow = "1.0.68"
chrono = "0.4.23"
clap = { version = "4.1.1", features = ["derive", "cargo"] }
dialoguer = "0.10.3"
dirs = "5.0.0"
env_logger = "0.10.0"
handlebars = "4.3.6"
log = "0.4.17"
open = "4.0.0"
proc-macro2 = "1.0.50"
quote = "1.0.23"
serde = "1.0.152"
serde_derive = "1.0.152"
syn = "2.0.3"
toml = "0.7.2"
url = "2.2.2"
uuid = { version = "1.2.2", features = ["v4"] }
ion_derive = { version = "0.1.0", path = "ion_derive" }
julia-semver = { version = "0.1.0", path = "julia-semver" }
octocrab = { version = "0.18.1", git = "https://github.com/Roger-luo/octocrab.git" }
colorful = "0.2.2"
tokio = "1.24.2"
either = "1.8.0"
secrecy = "0.8.0"
reqwest = { version = "0.11.14", features = ["native-tls-vendored"] }
copypasta = "0.8.1"
spinoff = "0.7.0"
clap_complete = "4.1.1"
crc32fast = "1.3.2"
tempfile = "3.3.0"
flate2 = "1.0.25"
tar = "0.4.38"
self_update = "0.37.0"
[build-dependencies]
copy_to_output = "2.0.0"
[dev-dependencies]
assert_cmd = "2.0.8"
pretty_assertions = "1.3.0"
rexpect = "0.5.0"
serde_json = "1.0.91"
[features]
default = []
oauth = []
config-dir = []
bin = ["oauth", "config-dir"]