-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
38 lines (34 loc) · 990 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]
name = "drisk-api"
version = "0.0.9"
description = "drisk_api - API to connect to dRISK Edge."
homepage = "https://github.com/driskai/drisk_api"
repository = "https://github.com/driskai/drisk_api"
keywords = ["drisk"]
readme = "README.md"
license = "MIT"
edition = "2021"
include = [
"**/*.rs",
"Cargo.toml",
]
[lib]
name = "drisk_api"
crate-type = ["lib", "cdylib"]
[features]
extension-module = ["dep:pyo3"]
no-skip-if = []
[dependencies]
bincode = { version = "1.3.3" }
hashbrown = { version = "0.15.0", features = ["serde"] }
pyo3 = { version = "0.21.2", features = ["extension-module"], optional = true}
serde = { version = "1", features = ["derive"] }
serde_json = { version = "1.0.0" }
[dependencies.uuid]
version = "1.4.1"
features = [
"v4", # Lets you generate random UUIDs
"fast-rng", # Use a faster (but still sufficiently random) RNG
"macro-diagnostics", # Enable better diagnostics for compile-time UUIDs
"serde"
]