-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
24 lines (22 loc) · 843 Bytes
/
Copy pathCargo.toml
File metadata and controls
24 lines (22 loc) · 843 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
[package]
name = "authorizer-cli"
version = "0.1.0"
edition = "2021"
authors = ["Lakhan Samani <lakhan.m.samani@gmail.com>","Anik Ghosh <tech.anikghosh@gmail.com>"]
license = "MIT OR Apache-2.0"
description = "CLI tool for authorizer"
readme = "README.md"
homepage = "https://github.com/authorizerdev/authorizer-cli"
repository = "https://github.com/authorizerdev/authorizer-cli"
keywords = ["cli", "tool", "authorizer"]
categories = ["command-line-utilities"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde_json = "1.0"
regex = "1.5"
rpassword = "7.0"
csv = "1.1"
serde = { version = "1.0", features = ["derive"] }
tokio = { version = "1", features = ["full"] }
clap = { version = "4.0.9", features = ["derive"] }
reqwest = { version = "0.11.12", features = ["json"] }