-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
40 lines (34 loc) · 991 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
40
[package]
name = "elk-mq"
version = "0.1.1"
description = "A Message Queue implementation in rust, using Redis as a communication medium."
edition = "2021"
rust-version = "1.65"
authors = [
"Tijmen Verhoef <[email protected]>"
]
readme = "README.md"
repository = "https://github.com/nemjit001/elk-mq"
homepage = "https://github.com/nemjit001/elk-mq"
documentation = "https://github.com/nemjit001/elk-mq"
license = "Apache-2.0"
categories = [
"concurrency",
"asynchronous"
]
exclude = [
"pyproject.toml",
"setup.py"
]
[lib]
crate-type = [ "lib", "staticlib", "cdylib" ]
[features]
python_bindings = [ "cpython" ]
[dependencies]
redis = { version="0.22" }
serde = { version="1.0", features=[ "derive" ] }
serde_json = { version="1.0" }
uuid = { version="1.2", features=[ "v4" ] }
regex = { version="1.7" }
lazy_static = { version="1.4" }
cpython = { git="https://github.com/nemjit001/rust-cpython", version="0.7", features=[ "extension-module" ], optional=true }