diff options
| author | Henry Gressmann <mail@henrygressmann.de> | 2023-12-04 14:12:09 +0100 |
|---|---|---|
| committer | Henry Gressmann <mail@henrygressmann.de> | 2023-12-04 14:12:09 +0100 |
| commit | 767ea3207a7919d69e95791d2bdc71f9fa22cfe3 (patch) | |
| tree | 75aff6eee7e2eb4c88e28c83513095bc4c684815 /crates | |
| parent | d41e71917e49b3c9981877ff1f0f323d39f14f91 (diff) | |
chore: remove unneeded dependencies
Signed-off-by: Henry Gressmann <mail@henrygressmann.de>
Diffstat (limited to 'crates')
| -rw-r--r-- | crates/cli/Cargo.toml | 4 | ||||
| -rw-r--r-- | crates/cli/src/bin.rs (renamed from crates/cli/bin.rs) | 0 | ||||
| -rw-r--r-- | crates/cli/src/util.rs (renamed from crates/cli/util.rs) | 0 | ||||
| -rw-r--r-- | crates/cli/src/wat.rs (renamed from crates/cli/wat.rs) | 0 | ||||
| -rw-r--r-- | crates/parser/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/tinywasm/Cargo.toml | 2 | ||||
| -rw-r--r-- | crates/types/Cargo.toml | 4 |
7 files changed, 6 insertions, 6 deletions
diff --git a/crates/cli/Cargo.toml b/crates/cli/Cargo.toml index dfb418a..60c3ad8 100644 --- a/crates/cli/Cargo.toml +++ b/crates/cli/Cargo.toml @@ -5,14 +5,14 @@ edition="2021" [[bin]] name="tinywasm" -path="bin.rs" +path="src/bin.rs" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [dependencies] tinywasm={path="../tinywasm"} argh="0.1" -color-eyre="0.6" +color-eyre={default-features=false} log="0.4" pretty_env_logger="0.5" wast={version="69.0", optional=true} diff --git a/crates/cli/bin.rs b/crates/cli/src/bin.rs index 3615e4a..3615e4a 100644 --- a/crates/cli/bin.rs +++ b/crates/cli/src/bin.rs diff --git a/crates/cli/util.rs b/crates/cli/src/util.rs index 8b13789..8b13789 100644 --- a/crates/cli/util.rs +++ b/crates/cli/src/util.rs diff --git a/crates/cli/wat.rs b/crates/cli/src/wat.rs index fd00a8e..fd00a8e 100644 --- a/crates/cli/wat.rs +++ b/crates/cli/src/wat.rs diff --git a/crates/parser/Cargo.toml b/crates/parser/Cargo.toml index b187886..e45d452 100644 --- a/crates/parser/Cargo.toml +++ b/crates/parser/Cargo.toml @@ -7,7 +7,7 @@ edition="2021" # fork of wasmparser with no_std support, see https://github.com/bytecodealliance/wasmtime/issues/3495 # TODO: create dependency free parser wasmparser={version="0.100", package="wasmparser-nostd", default-features=false} -log="0.4.20" +log="0.4" tinywasm-types={path="../types"} [features] diff --git a/crates/tinywasm/Cargo.toml b/crates/tinywasm/Cargo.toml index acd6736..ded786f 100644 --- a/crates/tinywasm/Cargo.toml +++ b/crates/tinywasm/Cargo.toml @@ -9,7 +9,7 @@ path="src/lib.rs" crate-type=["cdylib", "rlib"] [dependencies] -log="0.4.20" +log="0.4" tinywasm-parser={path="../parser", default-features=false} tinywasm-types={path="../types", default-features=false} diff --git a/crates/types/Cargo.toml b/crates/types/Cargo.toml index e34c474..e7f6f92 100644 --- a/crates/types/Cargo.toml +++ b/crates/types/Cargo.toml @@ -4,10 +4,10 @@ version="0.0.0" edition="2021" [dependencies] -log="0.4.20" +log={version="0.4", optional=true} rkyv={version="0.7", optional=true, default-features=false} [features] default=["std"] std=[] -serialize=["dep:rkyv"] +serialize=["dep:rkyv", "dep:log"] |
