forked from scylladb/scylla-rust-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
85 lines (67 loc) · 1.29 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[package]
edition = "2018"
name = "examples"
publish = false
version = "0.0.0"
[dev-dependencies]
anyhow = "1.0.33"
futures = "0.3.6"
openssl = "0.10.32"
rustyline = "6.3.0"
scylla = {path = "../scylla", features = ["ssl"]}
tokio = {version = "1.1.0", features = ["full"]}
tracing = "0.1.25"
tracing-subscriber = "0.2.16"
chrono = "0.4"
uuid = "0.8.1"
[[example]]
name = "auth"
path = "auth.rs"
[[example]]
name = "basic"
path = "basic.rs"
[[example]]
name = "logging"
path = "logging.rs"
[[example]]
name = "tls"
path = "tls.rs"
[[example]]
name = "cqlsh-rs"
path = "cqlsh-rs.rs"
[[example]]
name = "parallel"
path = "parallel.rs"
[[example]]
name = "parallel-prepared"
path = "parallel-prepared.rs"
[[example]]
name = "compare-tokens"
path = "compare-tokens.rs"
[[example]]
name = "select-paging"
path = "select-paging.rs"
[[example]]
name = "user-defined-type"
path = "user-defined-type.rs"
[[example]]
name = "cql-time-types"
path = "cql-time-types.rs"
[[example]]
name = "tracing"
path = "tracing.rs"
[[example]]
name = "schema_agreement"
path = "schema_agreement.rs"
[[example]]
name = "clone"
path = "clone.rs"
[[example]]
name = "speculative-execution"
path = "speculative-execution.rs"
[[example]]
name = "get_by_name"
path = "get_by_name.rs"
[[example]]
name = "value_list"
path = "value_list.rs"