-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
43 lines (37 loc) · 792 Bytes
/
Cargo.toml
File metadata and controls
43 lines (37 loc) · 792 Bytes
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 = "url_parser"
version = "0.1.0-alpha0"
authors = [
"Awayume <dev@awayume.jp>",
]
edition = "2021"
rust-version = "1.70"
description = "A URL parser written in Rust."
documentation = ""
readme = "./README.md"
homepage = ""
repository = "https://github.com/Awayume/url_parser.rs"
license = "Apache-2.0"
keywords = [
"http",
"parser",
"punycode",
"query",
"url",
]
categories = [
"encoding",
"network-programming",
"parser-implementations",
"web-programming",
]
publish = false
[dependencies]
url_parser_derive = { version = "0.1.0-rc0", path = "url_parser_derive" }
url_parser_trait = { version = "0.1.0-rc0", path = "url_parser_trait" }
[dev-dependencies]
[workspace]
members = [
"url_parser_derive",
"url_parser_trait",
]