-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
34 lines (31 loc) · 1.02 KB
/
Cargo.toml
File metadata and controls
34 lines (31 loc) · 1.02 KB
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
[package]
name = "sorcery-server"
version = "0.1.0"
edition = "2021"
license = "AGPL-3.0"
repository = "https://github.com/sorcery-app/sorcery-server"
[dependencies]
axum = { version = "0.8", features = ["macros"] }
axum-extra = { version = "0.12", features = ["typed-header"] }
headers = "0.4"
tokio = { version = "1", features = ["full"] }
tower-http = { version = "0.6", features = ["cors", "fs", "trace"] }
tower_governor = "0.8"
anyhow = "1"
serde = { version = "1", features = ["derive", "rc"] }
serde_json = "1"
askama = "0.15"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
url = "2"
percent-encoding = "2.3"
httpdate = "1"
# For local development, override with: cargo build --config 'patch.crates-io.srcuri-core.path="../sorcery-desktop/srcuri-core"'
srcuri-core = { git = "https://github.com/browserup/sorcery-desktop", branch = "main" }
[build-dependencies]
sha2 = "0.10"
base64 = "0.22"
regex = "1"
[dev-dependencies]
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"