-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
43 lines (38 loc) · 1.11 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
[package]
name = "plegosa"
version = "0.3.0"
authors = ["SyoBoN <syobon@syobon.net>"]
edition = "2021"
rust-version = "1.80"
description = "A simple Egosa (ego-search) tool for Pleroma"
repository = "https://github.com/syobocat/plegosa/"
license-file = "LICENSE"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
colored = "2.1.0"
env_logger = "0.11.5"
fast_html2md = "0.0.41"
kanaria = "0.2.0"
log = "0.4.22"
megalodon = "0.14.1"
nanohtml2text = "0.2.1"
openssl = "0.10.68"
regex = "1.11.1"
serde = "1.0.216"
tokio = "1.42.0"
toml = "0.8.19"
unicode-normalization = "0.1.24"
ureq = { version = "2.12.1", features = ["json"] }
[features]
default = []
static-openssl = ["openssl/vendored"]
# Workaround for #11
[package.metadata.cross.target.x86_64-unknown-netbsd]
pre-build = [
"mkdir -p /tmp/netbsd",
"curl https://cdn.netbsd.org/pub/NetBSD/NetBSD-9.2/amd64/binary/sets/base.tar.xz -O",
"tar -C /tmp/netbsd -xJf base.tar.xz",
"cp /tmp/netbsd/usr/lib/libexecinfo.so /usr/local/x86_64-unknown-netbsd/lib",
"rm base.tar.xz",
"rm -rf /tmp/netbsd",
]