File tree Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Expand file tree Collapse file tree 2 files changed +12
-7
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " couchbase_lite"
3
3
description = " Rust bindings for Couchbase Lite C"
4
-
5
4
# The first three numbers correspond to the Couchbase Lite C release, the fourth number corresponds to the Rust release
6
5
version = " 3.2.1-0"
7
6
@@ -13,10 +12,12 @@ categories = ["database"]
13
12
publish = [" couchbase-lite-rust" ]
14
13
15
14
[dependencies ]
16
- enum_primitive = " *"
17
- tempdir = " *"
18
- lazy_static = " 1.4.0"
19
- regex = " 1.10.4"
15
+ enum_primitive = " 0.1.1"
16
+
17
+ [dev-dependencies ]
18
+ lazy_static = " 1.5.0"
19
+ regex = " 1.11.1"
20
+ tempdir = " 0.3.7"
20
21
21
22
[dev-dependencies .cargo-husky ]
22
23
version = " 1"
Original file line number Diff line number Diff line change 23
23
// - https://doc.rust-lang.org/cargo/reference/build-scripts.html
24
24
25
25
#[ cfg( all( not( feature = "community" ) , not( feature = "enterprise" ) ) ) ]
26
- compile_error ! ( "You need to have one the following features activated: community, enterprise" ) ;
26
+ compile_error ! (
27
+ "You need to have at least one the following features activated: community, enterprise"
28
+ ) ;
27
29
#[ cfg( all( feature = "community" , feature = "enterprise" ) ) ]
28
- compile_error ! ( "You need to have one the following features activated: community, enterprise" ) ;
30
+ compile_error ! (
31
+ "You need to have at most one the following features activated: community, enterprise"
32
+ ) ;
29
33
30
34
extern crate bindgen;
31
35
extern crate fs_extra;
You can’t perform that action at this time.
0 commit comments