-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
72 lines (65 loc) · 1.55 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
65
66
67
68
69
70
71
72
[package]
name = "notes_r_us"
version = "0.3.1"
authors.workspace = true
edition.workspace = true
license-file.workspace = true
documentation.workspace = true
homepage.workspace = true
repository.workspace = true
readme = "README.md"
description = "Note Sharing Applictions API"
[workspace]
members = [".", "./migration"]
[workspace.package]
edition = "2021"
homepage = "https://notesrus.nzdev.org"
documentation = "https://docs.rs/notes_r_us"
authors = ["Liam Tietjens <[email protected]>", "Zac S (Ellozac) <[email protected]>", "Yuri P (yPiuro)"]
repository = "https://github.com/l2dit/notesrus.git"
license-file = "LICENSE"
keywords = ["Api", "Notes", "Database"]
[dependencies]
swagger = "6.5.0"
tokio = { version = "1.43.0", features = ["full"] }
tracing-subscriber = { version = "0.3.19", features = ["env-filter"] }
tracing = "0.1.41"
serde_json = "1.0.138"
chrono = "0.4.39"
chrono-tz = "0.10.1"
notes_r_us_migrations = { path = "./migration", version = "0.1.1"}
serde = "1.0.217"
sha2 = "0.10.8"
hmac = "0.12.1"
jwt = "0.16.0"
uuid = { version = "1.12.1", features = ["fast-rng", "v4"] }
names = "0.14.0"
derive_more = { version = "2.0.1", features = ["unwrap"] }
log = "0.4.25"
[dependencies.poem]
version = "3.1.6"
features = [
"static-files",
"multipart",
"tempfile"
]
[dependencies.poem-openapi]
version = "5.1.5"
features = [
"swagger-ui",
"openapi-explorer"
]
[dependencies.clap]
version = "4.5.28"
features = [
"derive",
"env"
]
[dependencies.sea-orm]
version = "1.1.4"
features = [
"runtime-tokio-rustls",
"sqlx-mysql",
"sqlx-postgres",
"sqlx-sqlite"
]