forked from cipherunits/CipherToken
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (29 loc) · 705 Bytes
/
Copy pathCargo.toml
File metadata and controls
34 lines (29 loc) · 705 Bytes
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
[package]
name = "ciphertoken"
version = "0.2.0"
edition = "2021"
[lib]
name = "ciphertoken"
crate-type = ["cdylib"]
[dependencies]
pyo3 = { version = "0.20.3", features = [
"extension-module",
"abi3-py38"
] }
pyo3-asyncio = { version = "0.20.0", features = ["tokio-runtime"] }
jsonwebtoken = "9.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
uuid = { version = "1.7", features = ["v4"] }
rand = "0.8"
rand_core = "0.6"
base64 = "0.21"
tokio = { version = "1.36", features = ["macros", "rt-multi-thread"] }
rsa = "0.9"
pem = "3"
pkcs8 = "0.10"
[features]
default = []
extension-module = ["pyo3/extension-module"]
[package.metadata.maturin]
include = ["ciphertoken"]