22 lines
673 B
TOML
22 lines
673 B
TOML
[package]
|
|
name = "gotrue"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
[lib]
|
|
crate-type = ["cdylib", "rlib"]
|
|
|
|
[dependencies]
|
|
serde.workspace = true
|
|
serde_json.workspace = true
|
|
futures-util = "0.3.30"
|
|
anyhow.workspace = true
|
|
reqwest = { workspace = true, features = ["json", "rustls-tls", "cookies"] }
|
|
tokio = { workspace = true, features = ["sync", "macros"] }
|
|
infra = { path = "../infra", features = ["request_util"] }
|
|
gotrue-entity = { path = "../gotrue-entity" }
|
|
tracing = "0.1"
|
|
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = { version = "0.2", features = ["js"] } |