-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
34a01a3
commit 74ab2b5
Showing
90 changed files
with
498 additions
and
6,174 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "capsule" | ||
version = "0.1.5" | ||
version = "0.2.0" | ||
authors = ["Capsule Developers <[email protected]>"] | ||
license = "Apache-2.0" | ||
edition = "2018" | ||
|
@@ -23,24 +23,17 @@ doctest = false | |
anyhow = "1.0" | ||
async-channel = "1.6" | ||
async-executor = "1.4" | ||
capsule-ffi = { version = "0.1.5", path = "../ffi" } | ||
capsule-macros = { version = "0.1.5", path = "../macros" } | ||
capsule-ffi = { version = "0.2.0", path = "../ffi" } | ||
capsule-macros = { version = "0.2.0", path = "../macros" } | ||
clap = "2.33" | ||
criterion = { version = "0.3", optional = true } | ||
futures-lite = "1.11" | ||
futures-preview = "=0.3.0-alpha.19" | ||
futures-lite = "1.12" | ||
libc = "0.2" | ||
metrics-core = { version = "0.5", optional = true } | ||
metrics-runtime = { version = "0.13", optional = true, default-features = false } | ||
once_cell = "1.7" | ||
once_cell = "1.9" | ||
proptest = { version = "1.0", optional = true } | ||
regex = "1" | ||
regex = "1.5" | ||
serde = { version = "1.0", features = ["derive"] } | ||
thiserror = "1.0" | ||
tokio = "=0.2.0-alpha.6" | ||
tokio-executor = { version = "=0.2.0-alpha.6", features = ["current-thread", "threadpool"] } | ||
tokio-net = { version = "=0.2.0-alpha.6", features = ["signal"] } | ||
tokio-timer = "=0.3.0-alpha.6" | ||
toml = "0.5" | ||
tracing = "0.1" | ||
|
||
|
@@ -49,10 +42,9 @@ criterion = "0.3" | |
proptest = { version = "1.0", default-features = false, features = ["default-code-coverage"] } | ||
|
||
[features] | ||
default = ["metrics"] | ||
default = [] | ||
compile_failure = [] # compiler tests to check mutability rules are followed | ||
full = ["metrics", "pcap-dump", "testils"] | ||
metrics = ["metrics-core", "metrics-runtime"] | ||
full = ["pcap-dump", "testils"] | ||
pcap-dump = [] | ||
testils = ["criterion", "proptest"] | ||
|
||
|
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.