diff --git a/Cargo.lock b/Cargo.lock index 0585061..58e1d86 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1809,6 +1809,7 @@ dependencies = [ "serde", "sqlx", "tokio", + "wasm-bindgen", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 8a1f24c..fc4740f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,3 +10,16 @@ tokio = { version = "1.37.0", features = ["full"] } sqlx = { version = "0.7.4", features = ["sqlite", "runtime-tokio"] } serde = { version = "1.0.203", features = ["derive"] } log = "0.4.21" +wasm-bindgen = "0.2.100" + +[profile] + +[profile.wasm-dev] +inherits = "dev" +opt-level = 1 + +[profile.server-dev] +inherits = "dev" + +[profile.android-dev] +inherits = "dev"