Integrate ruma-events-macros into the repository
This commit is contained in:
parent
883a9566d2
commit
fb0f8a4d91
@ -8,9 +8,9 @@ before_script:
|
|||||||
script:
|
script:
|
||||||
- "cargo audit"
|
- "cargo audit"
|
||||||
- "cargo fmt --all -- --check"
|
- "cargo fmt --all -- --check"
|
||||||
- "cargo clippy --all-targets --all-features -- -D warnings"
|
- "cargo clippy --all --all-targets --all-features -- -D warnings"
|
||||||
- "cargo build --verbose"
|
- "cargo build --all --verbose"
|
||||||
- "cargo test --verbose"
|
- "cargo test --all --verbose"
|
||||||
if: "type != push OR (tag IS blank AND branch = master)"
|
if: "type != push OR (tag IS blank AND branch = master)"
|
||||||
notifications:
|
notifications:
|
||||||
email: false
|
email: false
|
||||||
|
@ -14,7 +14,7 @@ edition = "2018"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
ruma-identifiers = "0.14.0"
|
ruma-identifiers = "0.14.0"
|
||||||
ruma-events-macros = { version = "0.1.0", path = "../ruma-events-macros" }
|
ruma-events-macros = { version = "0.1.0", path = "ruma-events-macros" }
|
||||||
serde_json = "1.0.40"
|
serde_json = "1.0.40"
|
||||||
|
|
||||||
[dependencies.js_int]
|
[dependencies.js_int]
|
||||||
@ -24,3 +24,8 @@ features = ["serde"]
|
|||||||
[dependencies.serde]
|
[dependencies.serde]
|
||||||
version = "1.0.97"
|
version = "1.0.97"
|
||||||
features = ["derive"]
|
features = ["derive"]
|
||||||
|
|
||||||
|
[workspace]
|
||||||
|
members = [
|
||||||
|
"ruma-events-macros",
|
||||||
|
]
|
||||||
|
3
ruma-events-macros/.gitignore
vendored
3
ruma-events-macros/.gitignore
vendored
@ -1,3 +0,0 @@
|
|||||||
/target
|
|
||||||
**/*.rs.bk
|
|
||||||
Cargo.lock
|
|
@ -1,20 +0,0 @@
|
|||||||
language: "rust"
|
|
||||||
cache: "cargo"
|
|
||||||
before_script:
|
|
||||||
- "rustup component add rustfmt"
|
|
||||||
- "rustup component add clippy"
|
|
||||||
- "cargo install --force cargo-audit"
|
|
||||||
- "cargo generate-lockfile"
|
|
||||||
script:
|
|
||||||
- "cargo audit"
|
|
||||||
- "cargo fmt --all -- --check"
|
|
||||||
- "cargo clippy --all-targets --all-features -- -D warnings"
|
|
||||||
- "cargo build --verbose"
|
|
||||||
- "cargo test --verbose"
|
|
||||||
if: "type != push OR (tag IS blank AND branch = master)"
|
|
||||||
notifications:
|
|
||||||
email: false
|
|
||||||
irc:
|
|
||||||
channels:
|
|
||||||
- secure: "HvfXk7XMbm+iDeGoNNO886q4xMOUqJncfAxqklG6FJMCVxyrf8afyyXveCxnTH1F5oDvJXw33m6YetEj1oc7RQcB3+36XkxhjC/IzmupfD9KsikGiamL9YDrfQopvY4RXqodTR3YEof7SkFkEAzuobT0QStemX6TCkC9a7BX1QpMvEbo1pS5wlswy2G2WDbiicoiS93su73AKTQ2jOmzFdwUDZdhpNnPNJqVm5TM2Am8tj6hbX6A2y2AecRZISf8rv8LhmgpZi97NjeeK4CbsQO7G4KANGr8RA7oxlgzbW2q7FbDupB6+zLT4a4/R5GjtJoi8pvaJSL9r2GYpP4VLTYF3+tJVfLbvmQVtUjhHE4masGYfnZgpgRtiH6o+DiF/ErSE/SjJEy/S8ujqXS9mjLFtSg6nLM4k4JdCr7MLrX0buNUsv5mtmhyUvYgJtd9E+ZxLHV5TG5lF28JPMrpKrEE5UvQr/xHZh+70AwCTI5jMoSPqpBwsyQ1agxTIDmiyuo60FhVUoLyiXn25m0ZIf7v1sg4A8vFq0zA9xnhpxtZATXa7StZQn1BH2k82kuyO0hkbFhEHTv25sWJdtaFy/vmrGdchxVy7ogdOXOjXkeg+0oAnOHMsRyZlVusQ4mixM/PYet860XNcW4P6P9Nz0u5ZNmagggXSKCpCqs3smY="
|
|
||||||
use_notice: true
|
|
@ -1,19 +0,0 @@
|
|||||||
Copyright (c) 2019 Jimmy Cuadra
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in
|
|
||||||
all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
||||||
THE SOFTWARE.
|
|
Loading…
x
Reference in New Issue
Block a user