16 lines
422 B
TOML
16 lines
422 B
TOML
[package]
|
|
name = "client-api"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
reqwest = { version = "0.11.20", default-features = false }
|
|
anyhow = "1.0.75"
|
|
gotrue = { path = "../gotrue" }
|
|
infra = { path = "../infra" }
|
|
serde_json = "1.0.105"
|
|
shared_entity = { path = "../shared-entity" }
|
|
storage = { path = "../storage" }
|