You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
598 B
24 lines
598 B
[package] |
|
name = "dnsbox-base" |
|
version = "0.1.0" |
|
authors = ["Stefan Bühler <stbuehler@web.de>"] |
|
edition = "2018" |
|
|
|
[dependencies] |
|
byteorder = "1.1.0" |
|
bytes = "0.4" |
|
data-encoding = "2.1.0" |
|
dnsbox-derive = { path = "../dnsbox-derive" } |
|
failure = "0.1.5" |
|
lazy_static = "1.3.0" |
|
log = "0.4" |
|
smallvec = "0.6.10" |
|
sha-1 = { version = "0.8.1", optional = true } |
|
sha2 = { version = "0.8.0", optional = true } |
|
gost94 = { version = "0.7.0", optional = true } |
|
num-bigint = { version = "0.2.3", optional = true } |
|
|
|
[features] |
|
no-unsafe = [] |
|
default = ['crypto'] |
|
crypto = ['sha-1', 'sha2', 'gost94', 'num-bigint']
|
|
|