2018-05-14 19:36:22 +02:00
|
|
|
[package]
|
|
|
|
name = "rpki"
|
|
|
|
version = "0.1.0"
|
2018-07-06 15:40:56 +02:00
|
|
|
authors = ["Martin Hoffmann <martin@nlnetlabs.nl>"]
|
2018-05-14 19:36:22 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2018-07-02 12:32:21 +02:00
|
|
|
base64 = "^0.9"
|
2018-06-19 18:17:46 +02:00
|
|
|
# Move to published 0.5 once that is available.
|
2018-07-02 12:32:21 +02:00
|
|
|
bytes = { git = "https://github.com/carllerche/bytes.git" }
|
|
|
|
chrono = "^0.4"
|
2018-07-06 15:40:56 +02:00
|
|
|
clap = "2.0"
|
2018-07-02 12:32:21 +02:00
|
|
|
env_logger = "^0.5"
|
|
|
|
failure = "^0.1"
|
2018-07-20 13:45:12 +02:00
|
|
|
futures = "^0.1"
|
|
|
|
futures-cpupool = "^0.1"
|
|
|
|
log = "^0.4"
|
|
|
|
num_cpus = "1.0"
|
2018-07-02 12:32:21 +02:00
|
|
|
ring = "^0.12"
|
|
|
|
untrusted = "^0.5"
|
2018-05-22 16:48:18 +02:00
|
|
|
|
|
|
|
[features]
|
2018-07-02 12:32:21 +02:00
|
|
|
# Panic when a parsing error occurs. This feature is intended for
|
2018-05-22 16:48:18 +02:00
|
|
|
# development use exclusively and MUST NOT be enabled in release builds.
|
|
|
|
extra-debug = []
|
|
|
|
|