Compare commits

...

3 Commits

Author SHA1 Message Date
Floris Bruynooghe
e57af118ec Bump version number 2019-06-30 21:52:48 +02:00
Floris Bruynooghe
f89bfb1612 cargo update 2019-06-30 21:50:47 +02:00
Floris Bruynooghe
98611e6041 Add Cargo.lock
This means we have to maintain this file.  However we want packagers
to be able to reproduce builds from tags etc, so we need to provide
the lock file I think.
2019-06-30 20:13:39 +02:00
5 changed files with 2629 additions and 5 deletions

1
.gitignore vendored
View File

@@ -1,6 +1,5 @@
/target
**/*.rs.bk
Cargo.lock
# ignore vi temporaries
*~

2625
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
edition = "2018"
license = "MPL"
@@ -29,7 +29,7 @@ charset = "0.1"
percent-encoding = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
chrono = "0.4.6"
chrono = "0.4.7"
failure = "0.1.5"
failure_derive = "0.1.5"
# TODO: make optional

View File

@@ -1,6 +1,6 @@
[package]
name = "deltachat_ffi"
version = "1.0.0-alpha.1"
version = "1.0.0-alpha.2"
description = "Deltachat FFI"
authors = ["dignifiedquire <dignifiedquire@gmail.com>"]
edition = "2018"

View File

@@ -1,6 +1,6 @@
//! Constants
pub const DC_VERSION_STR: &'static [u8; 14] = b"1.0.0-alpha.1\x00";
pub const DC_VERSION_STR: &'static [u8; 14] = b"1.0.0-alpha.2\x00";
pub const DC_MOVE_STATE_MOVING: u32 = 3;
pub const DC_MOVE_STATE_STAY: u32 = 2;