Skip to content

Commit 40f16c9

Browse files
author
Itsusinn逸新
committed
chore: release 1.4.5
1 parent b80c9fb commit 40f16c9

File tree

2 files changed

+84
-84
lines changed

2 files changed

+84
-84
lines changed

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+83-83
Original file line numberDiff line numberDiff line change
@@ -1,83 +1,83 @@
1-
[package]
2-
name = "msgist-dc"
3-
version = "1.4.4"
4-
5-
authors = ["Itsusinn <itsusinn@foxmail.com>"]
6-
edition = "2021"
7-
8-
[package.metadata.i18n]
9-
available-locales = ["en-US", "zh-CN"]
10-
default-locale = "en-US"
11-
load-path = "locales"
12-
13-
[features]
14-
default = ["color"]
15-
no-color = ["colored/no-color"]
16-
color = ["tracing-subscriber/ansi"]
17-
18-
[dependencies]
19-
serenity = "0.12.0"
20-
21-
# logging
22-
tracing= "0.1.40"
23-
tracing-subscriber = { version = "0.3.18", default-features = false, features = [ "tracing-log", "std", "local-time", "fmt"] }
24-
colored = "2.1.0"
25-
26-
# asynchronous
27-
futures-util = "0.3.25"
28-
tokio = { version = "1.23.1", default-features = false, features = ["macros", "rt-multi-thread","signal"] }
29-
reqwest = { version = "0.11.13", default-features = false, features = ["rustls","rustls-tls-native-roots"] }
30-
sled = "0.34.7"
31-
32-
# tools
33-
uuid = "1.2.2"
34-
url = "2.3.1"
35-
once_cell = "1.17.0"
36-
dashmap = { version = "5.4.0", features = ["serde"] }
37-
educe = { version = "0.5.11", default-features = false, features = ["Default"] }
38-
arcstr = { version = "1.1.5", features = ["serde"] }
39-
either = "1.8.0"
40-
infer = "0.15.0"
41-
yaml-rust = "0.4.5"
42-
linked-hash-map = "0.5.6"
43-
time = { version = "0.3.31", features = ["macros", "local-offset"] }
44-
chrono = "0.4.23"
45-
46-
# error handling
47-
thiserror = "1.0.56"
48-
color-eyre = "0.6.2"
49-
50-
# encoding and decoding
51-
base64-url = "2.0.2"
52-
53-
# serialization
54-
serde = { version = "1.0.195", features = ["derive","rc"] }
55-
serde_json = "1.0.111"
56-
serde_yaml = "0.9.30"
57-
ciborium = "0.2.1"
58-
59-
# mesagisto
60-
mesagisto-client = { branch = "master", git = "https://github.com/MeowCat-Studio/mesagisto-client-rs.git"}
61-
#mesagisto-client = { path = "../../mesagisto-client/rust" }
62-
63-
singleton = { branch = "master",git = "https://github.com/Itsusinn/singleton-rs.git" }
64-
# singleton = { path = "/code/singleton-rs" }
65-
lateinit = { branch = "master", git = "https://github.com/Itsusinn/lateinit-rs.git" }
66-
self_update = { version = "0.39.0", default-features = false, features = ["archive-zip","compression-zip-deflate","rustls"] }
67-
figment-wrapper = { branch = "master", git = "https://github.com/Itsusinn/figment-wrapper.git" }
68-
figment = { version = "0.10.14", features = ["yaml"] }
69-
70-
# i18n
71-
i18n-embed = { version = "0.14.1", features = ["fluent-system", "desktop-requester"]}
72-
i18n-embed-fl = "0.7.0"
73-
rust-embed = "8.2.0"
74-
locale_config = "0.3.0"
75-
76-
77-
[profile.release]
78-
opt-level = 'z'
79-
debug = 1
80-
lto = true
81-
incremental = false
82-
codegen-units = 1
83-
strip = "debuginfo"
1+
[package]
2+
name = "msgist-dc"
3+
version = "1.4.5"
4+
5+
authors = ["Itsusinn <itsusinn@foxmail.com>"]
6+
edition = "2021"
7+
8+
[package.metadata.i18n]
9+
available-locales = ["en-US", "zh-CN"]
10+
default-locale = "en-US"
11+
load-path = "locales"
12+
13+
[features]
14+
default = ["color"]
15+
no-color = ["colored/no-color"]
16+
color = ["tracing-subscriber/ansi"]
17+
18+
[dependencies]
19+
serenity = "0.12.0"
20+
21+
# logging
22+
tracing= "0.1.40"
23+
tracing-subscriber = { version = "0.3.18", default-features = false, features = [ "tracing-log", "std", "local-time", "fmt"] }
24+
colored = "2.1.0"
25+
26+
# asynchronous
27+
futures-util = "0.3.25"
28+
tokio = { version = "1.23.1", default-features = false, features = ["macros", "rt-multi-thread","signal"] }
29+
reqwest = { version = "0.11.13", default-features = false, features = ["rustls","rustls-tls-native-roots"] }
30+
sled = "0.34.7"
31+
32+
# tools
33+
uuid = "1.2.2"
34+
url = "2.3.1"
35+
once_cell = "1.17.0"
36+
dashmap = { version = "5.4.0", features = ["serde"] }
37+
educe = { version = "0.5.11", default-features = false, features = ["Default"] }
38+
arcstr = { version = "1.1.5", features = ["serde"] }
39+
either = "1.8.0"
40+
infer = "0.15.0"
41+
yaml-rust = "0.4.5"
42+
linked-hash-map = "0.5.6"
43+
time = { version = "0.3.31", features = ["macros", "local-offset"] }
44+
chrono = "0.4.23"
45+
46+
# error handling
47+
thiserror = "1.0.56"
48+
color-eyre = "0.6.2"
49+
50+
# encoding and decoding
51+
base64-url = "2.0.2"
52+
53+
# serialization
54+
serde = { version = "1.0.195", features = ["derive","rc"] }
55+
serde_json = "1.0.111"
56+
serde_yaml = "0.9.30"
57+
ciborium = "0.2.1"
58+
59+
# mesagisto
60+
mesagisto-client = { branch = "master", git = "https://github.com/MeowCat-Studio/mesagisto-client-rs.git"}
61+
#mesagisto-client = { path = "../../mesagisto-client/rust" }
62+
63+
singleton = { branch = "master",git = "https://github.com/Itsusinn/singleton-rs.git" }
64+
# singleton = { path = "/code/singleton-rs" }
65+
lateinit = { branch = "master", git = "https://github.com/Itsusinn/lateinit-rs.git" }
66+
self_update = { version = "0.39.0", default-features = false, features = ["archive-zip","compression-zip-deflate","rustls"] }
67+
figment-wrapper = { branch = "master", git = "https://github.com/Itsusinn/figment-wrapper.git" }
68+
figment = { version = "0.10.14", features = ["yaml"] }
69+
70+
# i18n
71+
i18n-embed = { version = "0.14.1", features = ["fluent-system", "desktop-requester"]}
72+
i18n-embed-fl = "0.7.0"
73+
rust-embed = "8.2.0"
74+
locale_config = "0.3.0"
75+
76+
77+
[profile.release]
78+
opt-level = 'z'
79+
debug = 1
80+
lto = true
81+
incremental = false
82+
codegen-units = 1
83+
strip = "debuginfo"

0 commit comments

Comments
 (0)