-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
57 lines (45 loc) · 1.75 KB
/
Cargo.toml
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
[workspace]
members = ["crates/*", "examples"]
resolver = "2"
[workspace.package]
version = "0.5.5"
license = "Apache-2.0 OR MIT"
publish = ["iop-systems"]
repository = "https://github.com/iopsystems/durable"
homepage = "https://github.com/iopsystems/durable"
[workspace.dependencies]
durable = { version = "0.5.5", registry = "iop-systems", path = "crates/durable" }
durable-core = { version = "0.5.5", registry = "iop-systems", path = "crates/durable-core" }
durable-http = { version = "0.5.5", registry = "iop-systems", path = "crates/durable-http" }
durable-sqlx = { version = "0.5.5", registry = "iop-systems", path = "crates/durable-sqlx" }
durable-client = { version = "0.1.1", registry = "iop-systems", path = "crates/durable-client" }
durable-migrate = { version = "0.1.0", registry = "iop-systems", path = "crates/durable-migrate" }
durable-runtime = { version = "0.5.0", registry = "iop-systems", path = "crates/durable-runtime" }
durable-bindgen = { version = "0.1.2", registry = "iop-systems", path = "crates/durable-bindgen" }
wit-bindgen-core = { version = "0.30.0" }
wit-bindgen-rust = { version = "0.30.0" }
wit-bindgen-rt = { version = "0.30.0" }
# These 3 need to be updated in sync.
wasmtime = { version = "26.0" }
wasmtime-wit-bindgen = { version = "26.0" }
wit-parser = { version = "0.218" }
[workspace.dependencies.durable-sqlx-macros]
version = "0.8.1"
registry = "iop-systems"
path = "crates/durable-sqlx-macros"
[profile.release]
debug = true
[profile.wasm]
inherits = "release"
opt-level = "s"
lto = true
debug = "line-tables-only"
[profile.dev-ci]
inherits = "dev"
debug = "line-tables-only"
opt-level = 1
[profile.dev-ci.package."*"]
debug = false
[profile.dev-ci.build-override]
debug = false
strip = true