-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
40 lines (34 loc) · 899 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
33
34
35
36
37
38
39
40
[package]
name = "kuso-subdomain-adder"
version = "0.4.0"
authors = ["sksat <[email protected]>"]
edition = "2018"
build = "build.rs"
license = "MIT"
readme = "README.md"
description = "A super-easy kuso subdomain utility for telekasu using kuso-domains-redirector and Cloudflare API"
repository = "https://github.com/sksat/kuso-subdomain-adder"
[profile.dev]
# speed up build
debug = 0
[profile.release]
incremental = true
debug = 0
[build-dependencies]
vergen = { version = "7.5.1", default-features = false, features = ["build", "cargo", "git", "rustc"] }
anyhow = "1.0.76"
[dependencies]
actix-web = "4.3.1"
async-trait = "0.1.68"
bytes = "1.4.0"
clap = "3.2.25"
cloudflare = "0.10.1"
domain = { version = "0.6.1", features = ["master"] }
env_logger = "0.10.0"
lazy_static = "1.4.0"
log = "0.4.18"
punycode = "0.4.1"
serde = "1.0.167"
serde_derive = "1.0.167"
tera = "1.19.0"
toml = "0.8.4"