shortener 0.1.2

A simple URL shortener.
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
name = "shortener"
version = "0.1.2"
authors = ["Ruoyu Zhong <zhongruoyu@outlook.com>"]
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
default-run = "shortener"
description = "A simple URL shortener."
homepage = "https://github.com/ZhongRuoyu/shortener"
readme = "README.md"
license = "MIT"
repository = "https://github.com/ZhongRuoyu/shortener.git"

[features]
bundled-sqlite = ["rusqlite/bundled"]

[lib]
name = "shortener"
path = "src/lib.rs"

[[bin]]
name = "shortener"
path = "src/bin/shortener.rs"

[[bin]]
name = "shortenerkey"
path = "src/bin/shortenerkey.rs"

[dependencies.axum]
version = "0.8"

[dependencies.base64]
version = "0.22"

[dependencies.chrono]
version = "0.4"

[dependencies.clap]
version = "4.6"
features = [
    "derive",
    "string",
]

[dependencies.clap_complete]
version = "4.6"

[dependencies.hex]
version = "0.4"

[dependencies.log]
version = "0.4"
features = ["std"]

[dependencies.percent-encoding]
version = "2.3"

[dependencies.rand]
version = "0.10"

[dependencies.rusqlite]
version = "0.39"

[dependencies.sha2]
version = "0.11"

[dependencies.thiserror]
version = "2.0"

[dependencies.tokio]
version = "1.52"
features = [
    "macros",
    "net",
    "rt-multi-thread",
]

[dependencies.url]
version = "2.5"

[build-dependencies.chrono]
version = "0.4"