Per @mara on #328: the hand-rolled encoder was over-cautious. Swap for base64 = 0.22 from crates.io — a standard, widely-trusted dep, no maintenance surface to carry. Drops the 15-line encoder and its two RFC 4648 unit tests.
27 lines
533 B
TOML
27 lines
533 B
TOML
[package]
|
|
name = "hive-c0re"
|
|
edition.workspace = true
|
|
version.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
axum.workspace = true
|
|
base64.workspace = true
|
|
reqwest.workspace = true
|
|
clap.workspace = true
|
|
hive-fr0nt.workspace = true
|
|
hive-sh4re.workspace = true
|
|
libc = "0.2"
|
|
rusqlite.workspace = true
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
tokio.workspace = true
|
|
tokio-stream.workspace = true
|
|
tracing.workspace = true
|
|
tracing-subscriber.workspace = true
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|