blob: e89470489f56ca7a9418fbe21127653da59ce520 (
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
|
[package]
name = "tor-units"
version = "0.0.2"
authors = ["Dennis Jackson <[email protected]>"]
edition = "2018"
license = "MIT OR Apache-2.0"
homepage = "https://gitlab.torproject.org/tpo/core/arti/-/wikis/home"
description = "Provides macros for types which are constrained within a range, ensuring invalid values are unrepresentable."
keywords = [ "tor", "arti" ]
repository="https://gitlab.torproject.org/tpo/core/arti.git/"
categories = [ "rust-patterns" ]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
derive_more = "0.99.0"
thiserror = "1.0.24"
[dev-dependencies]
float-cmp = "0.9.0"
# [derive_more]
# default-features = false
# features = ["from"]
|