Skip to content

Commit

Permalink
Merge pull request #200 from wasmerio/feature/clean-up-cargo-tomls
Browse files Browse the repository at this point in the history
Add misc clean ups to `Cargo.toml`s
  • Loading branch information
MarkMcCaskey authored Jul 28, 2020
2 parents c3d9abd + a77c31b commit eda22fc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 9 deletions.
1 change: 0 additions & 1 deletion Cargo.lock

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

1 change: 0 additions & 1 deletion lib/engine-native/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ wasmer-vm = { path = "../vm", version = "1.0.0-alpha.1" }
wasmer-engine = { path = "../engine", version = "1.0.0-alpha.1" }
wasmer-object = { path = "../object", version = "1.0.0-alpha.1" }
serde = { version = "1.0", features = ["derive", "rc"] }
serde_bytes = { version = "0.11" }
cfg-if = "0.1"
tracing = "0.1"
bincode = "1.3"
Expand Down
3 changes: 0 additions & 3 deletions lib/engine/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,5 @@ serde_bytes = { version = "0.11" }
bincode = "1.3"
lazy_static = "1.4"

[target.'cfg(target_os = "windows")'.dependencies]
winapi = { version = "0.3", features = ["winnt", "impl-default"] }

[badges]
maintenance = { status = "actively-developed" }
8 changes: 4 additions & 4 deletions lib/wasm-common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ keywords = ["webassembly", "wasm", "types"]
edition = "2018"

[dependencies]
# The cranelift-entity is just useful structures, not anything about the
# compiler itself, that's why we depend on it :)
# We use `cranelift-entity` here because it's a light-weight dependency and it contains
# some useful data structures
cranelift-entity = "0.65"
serde = { version = "1.0", features = ["derive"], optional = true }
serde = { version = "1.0", features = ["derive"], optional = true, default-features = false }

[features]
default = ["std", "enable-serde"]
std = []
std = ["serde/std"]
core = []
enable-serde = ["serde", "cranelift-entity/enable-serde"]

0 comments on commit eda22fc

Please sign in to comment.