Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4,097 changes: 407 additions & 3,690 deletions Cargo.lock

Large diffs are not rendered by default.

15 changes: 0 additions & 15 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,43 +7,28 @@ members = [
]

[workspace.dependencies]
golem-wasm = { version = "=0.0.0", path = "../golem/golem-wasm", default-features = false }
rib-core = { version = "=0.0.0", path = "rib-core" }
rib-repl = { version = "=0.0.0", path = "rib-repl" }

anyhow = "1.0.97"
async-trait = "0.1.87"
bigdecimal = { version = "0.4.7", features = ["serde", "string-only"] }
cargo_metadata = "0.21.0"
clap = { version = "4.5.32", features = ["derive", "suggestions", "color", "help", "env"] }
colored = "3.0.0"
combine = "4.6.7"
convert_case = "0.8.0"
crossterm = "0.28.1"
desert_rust = { version = "0.1.6", features = ["bigdecimal", "uuid", "chrono", "nonempty-collections", "serde-json", "bit-vec", "url", "mac_address"] }
dirs = "4.0.0"
lazy_static = "1.5.0"
miette = { version = "7.6.0", features = ["fancy"] }
poem-openapi = { version = "=5.1.16", features = ["chrono", "cookie", "humantime", "swagger-ui", "time", "url", "uuid", "websocket"] }
prometheus = { version = "0.14.0", features = ["process"] }
reqwest = { version = "0.12.13", features = ["json"] }
prost = "0.14.1"
prost-types = "0.14.1"
protox = "0.9.0"
rustyline = "15.0.0"
semver = "1.0.26"
serde = { version = "1.0", features = ["derive"] }
serde_json = { version = "1.0", features = ["raw_value"] }
shell-words = "1.1.0"
test-r = { version = "3.0.3", default-features = true }
tokio = { version = "1.44", features = ["macros", "rt-multi-thread", "sync", "io-std", "net", "tracing", "process"] }
tonic = { version = "0.14.2", features = ["gzip"] }
tonic-prost = "0.14.2"
tonic-prost-build = "0.14.2"
tracing = { version = "0.1.41", features = ["log"] }
uuid = { version = "1.15.1", features = ["serde", "v4", "v5", "v7"] }
wasm-wave = "0.244"

[patch.crates-io]
wasmtime = { git = "https://github.com/golemcloud/wasmtime.git", branch = "golem-wasmtime-v42.0.1" }
wasmtime-wasi = { git = "https://github.com/golemcloud/wasmtime.git", branch = "golem-wasmtime-v42.0.1" }
20 changes: 2 additions & 18 deletions rib-core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,35 +8,19 @@ description = "Parser for Golem's Rib language"
license-file = "../LICENSE"

[features]
default = ["json_in_errors", "poem"]
default = ["json_in_errors"]
json_in_errors = []
poem = [
"dep:poem-openapi",
]

[dependencies]
golem-wasm = { workspace = true }

async-trait = { workspace = true }
bigdecimal = { workspace = true }
combine = { workspace = true }
desert_rust = { workspace = true }
lazy_static = { workspace = true }
poem-openapi = { workspace = true, optional = true }
prost = { workspace = true }
prost-types = { workspace = true }
semver = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
tonic = { workspace = true }
tonic-prost = { workspace = true }
uuid = { workspace = true }

[build-dependencies]
cargo_metadata = { workspace = true }
miette = { workspace = true }
protox = { workspace = true }
tonic-prost-build = { workspace = true }
wasm-wave = { workspace = true }

[dev-dependencies]
test-r = { workspace = true }
Expand Down
52 changes: 0 additions & 52 deletions rib-core/build.rs

This file was deleted.

15 changes: 0 additions & 15 deletions rib-core/proto/golem/rib/compiler_output.proto

This file was deleted.

Loading