-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
64 lines (54 loc) · 1.57 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[package]
name = "myc-core"
description = "Provide base features of the Mycelium project as s and Use-cases."
edition.workspace = true
authors.workspace = true
version.workspace = true
license.workspace = true
repository.workspace = true
keywords.workspace = true
categories.workspace = true
readme.workspace = true
# ? ---------------------------------------------------------------------------
# ? DEPENDENCIES
# ? ---------------------------------------------------------------------------
[dependencies]
mycelium-base = { version = "5.0.8", path = "../base" }
mycelium-config = { version = "5.0.8", path = "../config" }
async-trait.workspace = true
chrono.workspace = true
env_logger.workspace = true
futures.workspace = true
futures-util.workspace = true
jsonwebtoken.workspace = true
lazy_static.workspace = true
regex.workspace = true
reqwest.workspace = true
serde.workspace = true
serde_json.workspace = true
serde_yaml.workspace = true
shaku.workspace = true
shaku_actix.workspace = true
utoipa.workspace = true
uuid.workspace = true
tracing.workspace = true
tokio.workspace = true
actix-web = { version = "4", features = ["openssl"] }
actix-web-httpauth = "0.8.0"
argon2 = "0.5"
enum-iterator = "1.4.0"
hex = "0.4.3"
tera = "1"
pasetors = "0.6"
rand = "0.8"
slugify = "0.1.0"
[dev-dependencies]
test-log = "0.2.8"
mockall = "0.11.4"
# ? ---------------------------------------------------------------------------
# ? LIBRARY
# ? ---------------------------------------------------------------------------
[lib]
name = "myc_core"
path = "src/lib.rs"
crate-type = ["staticlib", "lib"]