-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
31 lines (26 loc) · 923 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
[package]
name = "micro_types"
version = "0.3.0"
edition = "2021"
readme = "README.md"
license-file = "LICENSE.md"
description = "Types for distributed systems"
repository = "https://github.com/rust-micro/types"
homepage = "https://github.com/rust-micro/types"
keywords = ["micro", "distributed", "type", "redis"]
categories = ["network-programming", "data-structures", "database"]
documentation = "https://docs.rs/micro_types"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[example]]
name = "2services"
path = "examples/2services.rs"
[lib]
name = "dtypes"
[features]
default = ["redis"]
redis = ["dep:redis", "dep:serde_json", "dep:serde"]
[dependencies]
redis = { version = "0.23.3", features = ["script"], optional = true }
serde = { version = "1.0.188", features = [], optional = true }
serde_json = { version = "1.0.106", optional = true }
thiserror = "1.0.48"