Skip to content

Commit

Permalink
Prepare for a 0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
drogus committed Mar 24, 2024
1 parent 031ad9c commit 0702ebf
Show file tree
Hide file tree
Showing 13 changed files with 112 additions and 65 deletions.
102 changes: 68 additions & 34 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

29 changes: 19 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,12 @@ members = [
"shared",
]

[workspace.package]
version = "0.1.0"
edition = "2021"
# update rust-toolchain.toml too!
rust-version = "1.76.0"

[workspace.dependencies]
tokio = { version = "1.20", features = ["full"] }
anyhow = { version = "1", features = ["backtrace"] }
Expand All @@ -23,16 +29,19 @@ serde_json = "1.0"
serde_with = "3.7"
futures = "0.3"
uuid = { version = "1.4", features = ["serde", "v4"] }
wasmtime = { git = "https://github.com/bytecodealliance/wasmtime.git", features = ["async"] }
wasmtime-wasi = { git = "https://github.com/bytecodealliance/wasmtime.git" }
wasi-common = { git = "https://github.com/bytecodealliance/wasmtime.git" }
wiggle = { git = "https://github.com/bytecodealliance/wasmtime.git" }
wasmtime = { version = "19.0.0", features = ["async"] }
wasmtime-wasi = { version = "19.0.0" }
wasi-common = { version = "19.0.0" }
wiggle = { version = "19.0.0" }
num-rational = { version = "0.4", features = ["serde"]}
bytes = "1.5"
rational = "1.5"
crows-macros = { path = "macros" }
crows-shared = { path = "shared" }
crows-bindings = { path = "bindings" }
crows-utils = { path = "utils" }
crows-service = { path = "service" }
crows-wasm = { path = "wasm" }
crows-macros = { path = "macros", version = "0.1.0" }
crows-shared = { path = "shared", version = "0.1.0" }
crows-bindings = { path = "bindings", version = "0.1.0" }
crows-utils = { path = "utils", version = "0.1.0" }
crows-service = { path = "service", version = "0.1.0" }
crows-wasm = { path = "wasm", version = "0.1.0" }
crows-coordinator = { path = "coordinator", version = "0.1.0" }
crows-worker = { path = "worker", version = "0.1.0" }
crows-cli = { path = "cli", version = "0.1.0" }
4 changes: 2 additions & 2 deletions bindings/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "crows-bindings"
version = "0.1.0"
edition = "2021"
version.workspace = true
edition.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
7 changes: 5 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
[package]
name = "crows-cli"
version = "0.1.0"
edition = "2021"
version.workspace = true
edition.workspace = true

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[[bin]]
name = "crows"
path = "src/main.rs"

[dependencies]
clap = { version = "4.4.5", features = ["derive"] }
Expand Down
Loading

0 comments on commit 0702ebf

Please sign in to comment.