29 lines
949 B
TOML
29 lines
949 B
TOML
[package]
|
|
name = "mis-interpreter"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
authors = ["Rivulet <cadenream@cadencoaster.com>"]
|
|
|
|
[lib]
|
|
crate-type = ["cdylib"]
|
|
|
|
[package.metadata.wasm-pack]
|
|
target = "web"
|
|
out-dir = "build"
|
|
out-name = "index"
|
|
|
|
[dependencies]
|
|
worker = { version = "0.6", features = ['http', 'axum'] }
|
|
worker-macros = { version = "0.6", features = ['http'] }
|
|
axum = { version = "0.8", default-features = false, features = ["form", "macros"] }
|
|
tower-service = "0.3.3"
|
|
maud = { version = "0.27.0", default-features = false }
|
|
rand = { version = "0.9.2",default-features = false, features = ["thread_rng"] }
|
|
serde = { version = "1.0.228", default-features = false, features = ["derive"] }
|
|
tower-cookies = "0.11.0"
|
|
axum-extra = { version = "0.10.3", features = ["cookie"] }
|
|
uuid = { version = "1.18", features = ["v4", "v7", "v5", "js"] }
|
|
[target.'cfg(target_arch = "wasm32")'.dependencies]
|
|
getrandom = { version = "0.3", features = ["wasm_js"] }
|
|
|