|
1 | 1 | [package] |
2 | | -name = "skytable" |
3 | | -version = "0.4.0" |
4 | 2 | authors = [ "Sayan Nandan <[email protected]>"] |
5 | | -edition = "2018" |
6 | | -readme = "README.md" |
| 3 | +categories = [] |
7 | 4 | description = "Official Rust client driver for Skytable" |
8 | | -license = "Apache-2.0" |
9 | 5 | documentation = "https://docs.rs/skytable" |
10 | | -repository = "https://github.com/skytable/client-rust" |
11 | | -categories = [] |
| 6 | +edition = "2018" |
12 | 7 | keywords = ["skytable", "driver", "client", "database", "nosql"] |
| 8 | +license = "Apache-2.0" |
| 9 | +name = "skytable" |
| 10 | +readme = "README.md" |
| 11 | +repository = "https://github.com/skytable/client-rust" |
| 12 | +version = "0.4.0" |
13 | 13 |
|
14 | 14 | # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html |
15 | 15 |
|
16 | 16 | [features] |
17 | | -default = ["sync"] |
| 17 | +aio-ssl = ["tokio-openssl", "openssl"] |
| 18 | +aio-sslv = ["tokio-openssl", "openssl/vendored"] |
18 | 19 | async = ["bytes", "tokio"] |
19 | | -sync = [] |
20 | | -dbg = [] |
21 | 20 | const-gen = [] |
| 21 | +dbg = [] |
| 22 | +default = ["sync"] |
22 | 23 | ssl = ["openssl"] |
23 | 24 | sslv = ["openssl/vendored"] |
24 | | -aio-ssl = ["tokio-openssl", "openssl"] |
25 | | -aio-sslv = ["tokio-openssl", "openssl/vendored"] |
| 25 | +sync = [] |
26 | 26 |
|
27 | 27 | [dependencies] |
28 | | -bytes = { version="1.0.1", optional=true } |
29 | | -tokio = { version="1.7.1", features=["net", "io-util", "io-std"], optional=true } |
30 | | -openssl = { version="0.10.35", optional=true } |
31 | | -tokio-openssl = { version="0.6.2", optional=true } |
| 28 | +bytes = {version = "1.0.1", optional = true} |
| 29 | +openssl = {version = "0.10.35", optional = true} |
| 30 | +tokio = {version = "1.9.0", features = ["net", "io-util", "io-std"], optional = true} |
| 31 | +tokio-openssl = {version = "0.6.2", optional = true} |
32 | 32 | [package.metadata.docs.rs] |
33 | 33 | all-features = true |
34 | 34 | rustdoc-args = ["--cfg", "docsrs"] |
0 commit comments