Files
i2p-rs/Cargo.toml

34 lines
701 B
TOML
Raw Normal View History

[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
[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" }
[dependencies]
data-encoding = "2.1.2"
2019-03-08 01:17:50 +00:00
failure = "0.1"
failure_derive = "0.1"
lazy_static = "1.3.0"
log = "0.4.6"
2019-03-08 19:14:52 +00:00
nom = "^4.2"
rand = "0.5"
serde = "1"
serde_derive = "1"
sha2 = "0.8.0"
[dev-dependencies]
env_logger = "0.5"