spart/Cargo.toml

13 lines
477 B
TOML
Raw Permalink Normal View History

2022-06-08 22:58:14 +00:00
[package]
name = "spart"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-06-09 01:57:04 +00:00
# Some functionality of the normal url crate is only available for "special" schemes such as http.
# As we want to use this functionality for spartan urls, we use a patched version instead.
url = { git = "https://github.com/slondr/rust-url-additional-specials", branch = "master" }
urlencoding = "~2.1"