-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (31 loc) · 813 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
30
31
32
33
34
35
36
37
38
[package]
readme = "README.md"
name = "feishu_sdk"
version = "0.1.0"
edition = "2021"
authors = ["liuhuo"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
reqwest = { version = "0.11.22", optional = true, features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0" }
log = "0.4.0"
env_logger = "0.10.1"
regex = "1.10.2"
tokio = { version = "1", features = ["full"] }
[dev-dependencies]
dotenv = "*"
[features]
default = ["json"]
blocking = ["reqwest/blocking"]
json = ['reqwest']
[[example]]
name = "blocking"
path = "examples/blocking.rs"
required-features = ["blocking"]
[[example]]
name = "async_sheet"
path = "examples/async_sheet.rs"
[[test]]
name = "async_sheet"
path = "tests/test_sheet.rs"