-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 777 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 777 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "rs-ray"
version = "0.0.4"
edition = "2021"
authors = ["ChristianPav _@christians.email"]
description = "A rust crate for Spatie Ray"
readme = "README.md"
homepage = "https://github.com/amishdev/rust-ray"
repository = "https://github.com/amishdev/rust-ray"
license = "MIT OR Apache-2.0"
keywords = ["ray", "debug"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
reqwest = { version = "0.11", features = ["blocking", "json"] }
uuid = { version = "1.6.1", features = ["v4", "fast-rng"]}
tokio = { version = "1.35.0", features = ["full"], optional = true}
[features]
default = []
with_tokio = ["reqwest/default-tls", "tokio"]