-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathCargo.toml
39 lines (34 loc) · 870 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
39
[package]
name = "crates_tools"
version = "0.12.0"
edition = "2021"
authors = [
"Kostiantyn Wandalen <wandalen@obox.systems>",
"Bogdan Balushkin <bohdan.b@obox.systems>",
]
license = "MIT"
readme = "Readme.md"
documentation = "https://docs.rs/crates_tools"
repository = "https://github.com/Wandalen/wTools/tree/master/module/move/crates_tools"
homepage = "https://github.com/Wandalen/wTools/tree/master/module/move/crates_tools"
description = """
Tools to analyse crate files.
"""
categories = []
keywords = []
[lints]
workspace = true
[package.metadata.docs.rs]
features = [ "full" ]
all-features = false
[features]
default = [ "enabled" ]
full = [ "enabled", "network" ]
enabled = [ "network" ]
network = [ "ureq" ]
[dependencies]
flate2 = "~1.0"
tar = "~0.4"
ureq = { version = "~2.9", optional = true }
[dev-dependencies]
test_tools = { workspace = true }