-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
39 lines (34 loc) · 1.04 KB
/
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 = "rman"
version = "0.3.0"
authors = ["ev3nvy"]
edition = "2021"
description = "Parser for Riot Manifest file format."
repository = "https://github.com/ev3nvy/rman-rs"
license = "MIT OR Apache-2.0"
keywords = ["rman", "riot", "rito", "manifest", "riot-manifest"]
categories = ["data-structures", "encoding", "parser-implementations"]
[dependencies]
byteorder = "1.4.3"
flatbuffers = "23.5.26"
log = "0.4.20"
reqwest = { version = "0.11.14", default_features = false }
serde = { version = "1.0.188", features = ["derive"], optional = true }
thiserror = "1.0.49"
zstd = "0.12.4"
[build-dependencies]
flatbuffers = "23.5.26"
zstd = "0.12.4"
[dev-dependencies]
httptest = "0.15.4"
tokio = { version = "1.25.0", default_features = false, features = ["macros", "rt-multi-thread"] }
[features]
default = ["rustls-tls"]
version_error = []
serde = ["dep:serde"]
native-tls = ["reqwest/native-tls"]
rustls-tls = ["reqwest/rustls-tls"]
# docs.rs-specific configuration
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]