-
Notifications
You must be signed in to change notification settings - Fork 14
/
Cargo.toml
29 lines (25 loc) · 841 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
[package]
authors = ["mdrokz <mohammadmunshi@gmail.com>"]
categories = ["api-bindings", "development-tools::build-utils"]
description = "experimental crate to generate the Chrome Devtools Protocol."
edition = "2018"
keywords = ["macros", "cdp", "devtools", "chrome", "build-tool"]
license-file = "LICENSE.txt"
name = "auto_generate_cdp"
readme = "README.md"
repository = "https://github.com/mdrokz/auto_generate_cdp"
version = "0.4.4"
exclude = [".vscode/*"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
convert_case = '0.4.0'
proc-macro2 = '1.0.26'
quote = '1.0.9'
ureq = { version = "2.5", features = ["socks-proxy"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = '1.0.64'
[lib]
name = "auto_generate_cdp"
path = "src/lib.rs"
[features]
offline = []