21 lines
455 B
TOML
21 lines
455 B
TOML
[package]
|
|
name = "fcpv2"
|
|
version = "0.0.2"
|
|
authors = ["Horhik <horhik@tuta.io>"]
|
|
edition = "2018"
|
|
license = "GPL-2.0"
|
|
license-file = "LICENSE"
|
|
description = "Implementation of FCPv2 freenet protocol"
|
|
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
regex = "1.4.3"
|
|
rusqlite = "0.24.2"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
[dev-dependencies]
|
|
serde_json = "1.0"
|
|
|
|
|