|
1 | 1 | [package] |
2 | 2 | name = "lunatic-runtime" |
3 | | -version = "0.10.0" |
| 3 | +version = "0.12.0" |
4 | 4 | authors = ["Bernard Kolobara <bernard@lunatic.solutions>"] |
5 | 5 | edition = "2018" |
6 | 6 | description = "An actor platform built on WebAssembly" |
@@ -33,47 +33,47 @@ metrics = [ |
33 | 33 | prometheus = ["dep:metrics-exporter-prometheus", "metrics"] |
34 | 34 |
|
35 | 35 | [dependencies] |
36 | | -anyhow = "^1.0" |
37 | | -clap = { version = "^4.0", features = ["cargo", "derive"] } |
38 | | -lazy_static = "^1.4" |
39 | | -tokio = { version = "^1.20", features = [ |
| 36 | +anyhow = "1.0" |
| 37 | +clap = { version = "4.0", features = ["cargo", "derive"] } |
| 38 | +lazy_static = "1.4" |
| 39 | +tokio = { version = "1.20", features = [ |
40 | 40 | "macros", |
41 | 41 | "rt-multi-thread", |
42 | 42 | "net", |
43 | 43 | "time", |
44 | 44 | ] } |
45 | | -wasmtime = "^2.0" |
46 | | -wasmtime-wasi = "^2.0" |
47 | | -wasi-common = "^2.0" |
48 | | -wasmparser = "^0.94" |
49 | | -env_logger = "^0.9" |
50 | | -log = "^0.4" |
51 | | -serde = "^1.0" |
52 | | -bincode = "^1.3" |
53 | | -dashmap = "^5.3.4" |
54 | | -regex = "^1.5" |
| 45 | +wasmtime = "2.0" |
| 46 | +wasmtime-wasi = "2.0" |
| 47 | +wasi-common = "2.0" |
| 48 | +wasmparser = "0.94" |
| 49 | +env_logger = "0.9" |
| 50 | +log = "0.4" |
| 51 | +serde = "1.0" |
| 52 | +bincode = "1.3" |
| 53 | +dashmap = "5.3.4" |
| 54 | +regex = "1.5" |
55 | 55 | metrics = { version = "0.20.1", optional = true } |
56 | 56 | metrics-exporter-prometheus = { version = "0.11.0", optional = true } |
57 | | -uuid = { version = "^1.1", features = ["v4"] } |
58 | | -hash-map-id = { version = "^0.10", path = "crates/hash-map-id" } |
59 | | -lunatic-stdout-capture = { version = "^0.10", path = "crates/lunatic-stdout-capture" } |
60 | | -lunatic-process = { version = "^0.10", path = "crates/lunatic-process" } |
61 | | -lunatic-distributed = { version = "^0.10", path = "crates/lunatic-distributed" } |
62 | | -lunatic-common-api = { version = "^0.10", path = "crates/lunatic-common-api" } |
63 | | -lunatic-process-api = { version = "^0.10", path = "crates/lunatic-process-api" } |
64 | | -lunatic-error-api = { version = "^0.10", path = "crates/lunatic-error-api" } |
65 | | -lunatic-messaging-api = { version = "^0.10", path = "crates/lunatic-messaging-api" } |
66 | | -lunatic-timer-api = { version = "^0.10", path = "crates/lunatic-timer-api" } |
67 | | -lunatic-networking-api = { version = "^0.10", path = "crates/lunatic-networking-api" } |
68 | | -lunatic-version-api = { version = "^0.10", path = "crates/lunatic-version-api" } |
69 | | -lunatic-wasi-api = { version = "^0.10", path = "crates/lunatic-wasi-api" } |
70 | | -lunatic-registry-api = { version = "^0.10", path = "crates/lunatic-registry-api" } |
71 | | -lunatic-distributed-api = { version = "^0.10", path = "crates/lunatic-distributed-api" } |
| 57 | +uuid = { version = "1.1", features = ["v4"] } |
| 58 | +hash-map-id = { version = "0.12", path = "crates/hash-map-id" } |
| 59 | +lunatic-stdout-capture = { version = "0.12", path = "crates/lunatic-stdout-capture" } |
| 60 | +lunatic-process = { version = "0.12", path = "crates/lunatic-process" } |
| 61 | +lunatic-distributed = { version = "0.12", path = "crates/lunatic-distributed" } |
| 62 | +lunatic-common-api = { version = "0.12", path = "crates/lunatic-common-api" } |
| 63 | +lunatic-process-api = { version = "0.12", path = "crates/lunatic-process-api" } |
| 64 | +lunatic-error-api = { version = "0.12", path = "crates/lunatic-error-api" } |
| 65 | +lunatic-messaging-api = { version = "0.12", path = "crates/lunatic-messaging-api" } |
| 66 | +lunatic-timer-api = { version = "0.12", path = "crates/lunatic-timer-api" } |
| 67 | +lunatic-networking-api = { version = "0.12", path = "crates/lunatic-networking-api" } |
| 68 | +lunatic-version-api = { version = "0.12", path = "crates/lunatic-version-api" } |
| 69 | +lunatic-wasi-api = { version = "0.12", path = "crates/lunatic-wasi-api" } |
| 70 | +lunatic-registry-api = { version = "0.12", path = "crates/lunatic-registry-api" } |
| 71 | +lunatic-distributed-api = { version = "0.12", path = "crates/lunatic-distributed-api" } |
72 | 72 |
|
73 | 73 | [dev-dependencies] |
74 | | -wat = "^1.0" |
75 | | -tokio = { version = "^1.20", features = ["rt-multi-thread"] } |
76 | | -criterion = { version = "^0.4", features = ["async_tokio"] } |
| 74 | +wat = "1.0" |
| 75 | +tokio = { version = "1.20", features = ["rt-multi-thread"] } |
| 76 | +criterion = { version = "0.4", features = ["async_tokio"] } |
77 | 77 |
|
78 | 78 | [[bench]] |
79 | 79 | name = "benchmark" |
|
0 commit comments