-
Notifications
You must be signed in to change notification settings - Fork 172
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 917 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 917 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
[package]
name = "chromiumoxide_cdp"
version = "0.9.1"
authors = ["Matthias Seitz <[email protected]>"]
edition = "2024"
rust-version = "1.85"
description = "Contains all the generated types for chromiumoxide"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/mattsse/chromiumoxide"
repository = "https://github.com/mattsse/chromiumoxide"
readme = "../README.md"
include = ["src/**/*", "*.pdl", "LICENSE-*"]
[dev-dependencies]
chromiumoxide_pdl = { path = "../chromiumoxide_pdl", version = "0.9" }
reqwest = { version = "0.13", features = ["rustls"], default-features = false }
tempfile = "3.10"
tokio = { version = "1", features = ["rt", "fs", "process", "macros"] }
[dependencies]
chromiumoxide_pdl = { path = "../chromiumoxide_pdl", version = "0.9" }
chromiumoxide_types = { path = "../chromiumoxide_types", version = "0.9" }
serde = { version = "1", features = ["derive"] }
serde_json = "1"