-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
29 lines (28 loc) · 960 Bytes
/
Copy pathCargo.toml
File metadata and controls
29 lines (28 loc) · 960 Bytes
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
[package]
name = "argparsh"
version = "1.0.2"
edition = "2021"
authors = ["Aneesh Durg <aneeshdurg17@gmail.com>"]
license = "MIT"
homepage = "https://github.com/aneeshdurg/argparsh"
repository = "https://github.com/aneeshdurg/argparsh"
description = "Better argument parsing for shells"
keywords = [
"argument",
"cli",
"arg",
"parser",
"parse"
]
categories = ["command-line-interface"]
[dependencies]
bitcode = "=0.6.3"
# Pinned to match bitcode core exactly: bitcode_derive is a transitive dep of
# bitcode's `derive` feature with a caret requirement (^0.6.3). A fresh resolve
# (e.g. `cargo install --path .` in CI) would float it to a newer 0.6.x whose
# generated code references bitcode::__private::Vec, which core 0.6.3 lacks.
bitcode_derive = "=0.6.3"
clap = { version = "4.5.21", features = ["derive"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["preserve_order"] }
urlencoding = "2.1.3"