-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
42 lines (36 loc) · 949 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
41
42
[package]
name = "url_shortener"
version = "0.1.1"
authors = ["Michael Lohr <michael@lohr.dev>"]
edition = "2021"
build = "build.rs"
[workspace]
members = [".", "entity", "migration"]
[dependencies]
async-stream = { version = "^0.3" }
async-trait = { version = "0.1" }
futures = { version = "^0.3" }
futures-util = { version = "^0.3" }
rocket = "0.5.0-rc.2"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0.85", features = ["preserve_order"] }
thiserror = "1.0.32"
rand = "0.8.5"
entity = { path = "entity" }
migration = { path = "migration" }
built = { version = "0.5.1" }
[dependencies.rocket_dyn_templates]
version = "0.1.0-rc.2"
features = ["tera"]
[dependencies.sea-orm-rocket]
version = "0.5.0"
[dependencies.sea-orm]
version = "0.9.2"
features = [
"runtime-tokio-native-tls",
"sqlx-postgres",
"sqlx-mysql",
"sqlx-sqlite",
]
[build-dependencies]
built = { version = "0.5.1", features = ["git2"] }