-
Notifications
You must be signed in to change notification settings - Fork 124
/
Copy pathCargo.toml
37 lines (33 loc) · 870 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
[package]
name = "grammers-crypto"
version = "0.7.0"
authors = ["Lonami Exo <[email protected]>"]
license = "MIT OR Apache-2.0"
description = """
Several cryptographic utilities to work with Telegram's data.
"""
homepage = "https://github.com/Lonami/grammers"
documentation = "https://docs.rs/grammers-crypto"
repository = "https://github.com/Lonami/grammers"
keywords = ["telegram", "tl"]
categories = ["cryptography"]
edition = "2021"
[dependencies]
aes = "0.8.4"
getrandom = "0.2.15"
glass_pumpkin = "1.7.0"
hmac = "0.12.1"
num-bigint = "0.4.6"
pbkdf2 = "0.12.2"
sha1 = "0.10.6"
sha2 = "0.10.8"
num-traits = "0.2.19"
ctr = "0.9.2"
[target.'cfg(all(target_arch = "wasm32", target_os = "unknown"))'.dependencies]
getrandom = { version = "0.2.15", features = ["js"] }
[dev-dependencies]
bencher = "0.1.5"
toml = "0.8.19"
[[bench]]
name = "cipher"
harness = false