-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
32 lines (27 loc) · 846 Bytes
/
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
# SPDX-FileCopyrightText: 2024 Luflosi <[email protected]>
# SPDX-License-Identifier: CC0-1.0
[package]
name = "zonegen"
version = "0.2.0"
edition = "2021"
license = "GPL-3.0-only"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
clap = { version = "4.5", features = ["derive"] }
color-eyre = "0.6"
futures = "0.3"
indoc = "2.0"
nom = "7.1"
rustyline = "15.0"
sqlx = { version = "0.8", features = [ "runtime-tokio", "sqlite" ] }
tempfile-fast = "0.3"
tldextract = { git = "https://github.com/dovahcrow/tldextract-rs.git" }
tokio = { version = "1", features = ["full"] }
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
doc_markdown = "allow"
enum_glob_use = "warn"
nursery = { level = "warn", priority = -1 }
pedantic = { level = "warn", priority = -1 }
unwrap_used = "warn"