blob: 4d5c7821c815cec157878d08cb8ba8b058550ab4 (
plain)
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
|
[package]
name = "tor-cell"
version = "0.0.3"
authors = ["The Tor Project, Inc.", "Nick Mathewson <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Encode and decode Tor cells and messages"
keywords = [ "tor", "arti", "protocol" ]
categories = [ "parser-implementations", "network-programming" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
[dependencies]
caret = { path="../caret", version = "0.0.3"}
tor-llcrypto = { path="../tor-llcrypto", version = "0.0.3"}
tor-bytes = { path="../tor-bytes", version = "0.0.3"}
tor-cert = { path="../tor-cert", version = "0.0.3"}
tor-linkspec = { path="../tor-linkspec", version = "0.0.3"}
arrayref = "0.3"
bitflags = "1"
bytes = "1"
rand = "0.8"
thiserror = "1"
[dev-dependencies]
hex-literal = "0.3"
hex = "0.4"
|