-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
32 lines (28 loc) · 997 Bytes
/
Cargo.toml
File metadata and controls
32 lines (28 loc) · 997 Bytes
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
[package]
name = "underpass-api"
version = "0.1.0"
edition = "2024"
authors = ["Frédéric Rodrigo <fred.rodrigo@gmail.com>"]
description = "An Overpass-API on SQL Database."
license = "MIT/Apache-2.0"
repository = "https://github.com/teritorio/Underpass-API"
[features]
default = ["duckdb", "postgres"]
duckdb = ["dep:duckdb"]
postgres = ["dep:tokio-postgres"]
[workspace]
members = [
".",
"underpass-wasm",
]
[dependencies]
axum = { version = "0.8.4", features = ["macros", "multipart"] }
tokio = { version = "1.47.1", features = ["macros", "rt-multi-thread"] }
overpass_parser_rust = { git = "https://github.com/teritorio/overpass_parser_rust", branch = "master" }
duckdb = { version = "1.4.0", optional = true }
tower-http = { version = "0.6.6", features = ["cors", "trace"] }
tower = "0.5.2"
serde = { version = "1.0.225", features = ["derive"] }
serde_json = "1.0.145"
tracing = "0.1.41"
tokio-postgres = { version = "0.7.13", features = ["with-serde_json-1"], optional = true }