2016-07-17 21:42:12 -04:00
|
|
|
[package]
|
|
|
|
name = "i2p"
|
2022-05-20 15:28:15 -04:00
|
|
|
version = "0.1.1"
|
2017-04-02 15:53:27 +12:00
|
|
|
authors = ["Jack Grigg <str4d@i2pmail.org>"]
|
2017-05-01 00:33:10 +12:00
|
|
|
description = "I2P client library with a std::net-like API"
|
|
|
|
homepage = "https://github.com/i2p/i2p-rs"
|
|
|
|
repository = "https://github.com/i2p/i2p-rs"
|
|
|
|
readme = "README.md"
|
|
|
|
categories = ["network-programming"]
|
|
|
|
keywords = ["i2p", "net", "network", "sam"]
|
|
|
|
license = "MIT"
|
2019-04-21 00:39:20 +01:00
|
|
|
edition = "2018"
|
2017-05-01 00:33:10 +12:00
|
|
|
|
2022-03-29 23:16:15 -07:00
|
|
|
[features]
|
|
|
|
default = ["public-conn"]
|
|
|
|
public-conn = []
|
2017-05-01 00:33:10 +12:00
|
|
|
[badges]
|
2017-05-01 00:37:54 +12:00
|
|
|
travis-ci = { repository = "i2p/i2p-rs" }
|
2016-07-17 21:42:12 -04:00
|
|
|
|
|
|
|
[dependencies]
|
2019-03-24 23:07:23 +00:00
|
|
|
data-encoding = "2.1.2"
|
2019-03-08 01:17:50 +00:00
|
|
|
failure = "0.1"
|
|
|
|
failure_derive = "0.1"
|
2019-03-24 23:07:23 +00:00
|
|
|
lazy_static = "1.3.0"
|
2019-03-06 23:03:08 +00:00
|
|
|
log = "0.4.6"
|
2019-03-08 19:14:52 +00:00
|
|
|
nom = "^4.2"
|
2019-03-06 23:03:08 +00:00
|
|
|
rand = "0.5"
|
2019-04-10 21:46:20 +00:00
|
|
|
serde = "1"
|
|
|
|
serde_derive = "1"
|
2019-03-24 23:07:23 +00:00
|
|
|
sha2 = "0.8.0"
|
2019-03-06 23:03:08 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
env_logger = "0.5"
|