mirror of
https://github.com/YGGverse/btracker-fs.git
synced 2026-03-31 17:15:28 +00:00
22 lines
728 B
TOML
22 lines
728 B
TOML
[package]
|
|
name = "btracker-fs"
|
|
version = "0.3.0"
|
|
edition = "2024"
|
|
license = "MIT"
|
|
readme = "README.md"
|
|
description = "Shared filesystem API for the βtracker project components"
|
|
keywords = ["btracker", "bittorrent", "aquatic-crawler", "librqbit", "database"]
|
|
categories = ["network-programming"]
|
|
repository = "https://github.com/yggverse/btracker-fs"
|
|
# homepage = "https://yggverse.github.io"
|
|
|
|
[features]
|
|
# default = ["public"]
|
|
public = ["chrono", "librqbit-core"]
|
|
crawler = ["log", "regex"]
|
|
|
|
[dependencies]
|
|
chrono = { version = "0.4.41", features = ["serde"], optional = true }
|
|
librqbit-core = { version = "5.0.0", optional = true }
|
|
log = { version = "0.4.28", optional = true }
|
|
regex = { version = "1.11.2", optional = true }
|