34 lines
742 B
TOML
34 lines
742 B
TOML
[package]
|
|
name = "magnet-url"
|
|
version = "1.2.2"
|
|
authors = ["William Batista <bootlegbilly@protonmail.ch>"]
|
|
license = "MIT"
|
|
description = "A simple, hackable magnet url parser in Rust"
|
|
homepage = "https://github.com/billyb2/magnet-url-rs"
|
|
repository = "https://github.com/billyb2/magnet-url-rs"
|
|
readme = "README.md"
|
|
categories = ["parsing", "encoding", "parser-implementations"]
|
|
keywords = ["torrent", "magnet", "magnet_url", "parse"]
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
lazy_static = "1"
|
|
regex = "1"
|
|
|
|
[dev-dependencies]
|
|
criterion = {version="0.3", features=["html_reports"]}
|
|
|
|
[[bench]]
|
|
name = "benchmark"
|
|
harness = false
|
|
|
|
[profile.bench]
|
|
opt-level = 3
|
|
lto = "fat"
|
|
codegen-units = 1
|
|
|
|
[profile.release]
|
|
opt-level = 3
|
|
lto = "fat"
|
|
codegen-units = 1
|