Commit Graph

75 Commits

Author SHA1 Message Date
Sunli
ee89321b57 Remove bson-uuid feature #1032 2022-09-01 22:52:04 +08:00
Nicolas Moutschen
15afe01f7a feat: add @tag support 2022-08-22 11:44:02 +02:00
Nicolas Moutschen
06973ee09b feat: @inaccessible support 2022-08-18 11:40:04 +02:00
al8n
2da09de179 fix format 2022-05-21 13:55:58 +08:00
al8n
318c3dfc97 fix #925 support bigdecimal 2022-05-20 22:05:10 +08:00
Sunli
7a365d5659 Release 4.0.0-alpha.1
async-graphql@4.0.0-alpha.1
async-graphql-actix-web@4.0.0-alpha.1
async-graphql-axum@4.0.0-alpha.1
async-graphql-derive@4.0.0-alpha.1
async-graphql-parser@4.0.0-alpha.1
async-graphql-poem@4.0.0-alpha.1
async-graphql-rocket@4.0.0-alpha.1
async-graphql-tide@4.0.0-alpha.1
async-graphql-value@4.0.0-alpha.1
async-graphql-warp@4.0.0-alpha.1

Generated by cargo-workspaces
2022-05-05 12:49:58 +08:00
Sunli
fef97e7458 Integrate with the uuid08 #907 2022-05-03 15:57:17 +08:00
Sunli
6f8e3fe033 Update CI 2022-05-01 09:59:13 +08:00
Sunli
7b384a3d4d Merge pull request #896 from boardmaster357/master
Implemented OutputType for tokio RwLock
2022-04-28 14:58:19 +08:00
Robert Nelson
7e12c01f0b Implemented OutputType for tokio Mutex 2022-04-27 21:59:45 -07:00
Robert Nelson
53993f7a13 Implemented OutputType for tokio RwLock 2022-04-19 10:57:57 -07:00
Sunli
88ba75ec70 Rework connection types 2022-04-19 19:18:06 +08:00
Sunli
f417068c27 Merge branch 'async-graphql-v4' into master 2022-04-19 10:28:02 +08:00
Sunli
a62eb6f699 Panics when the same Rust type has the same name. #880 2022-03-30 20:54:49 +08:00
Jarrett Tierney
15deab33ee Add feature(bson-uuid) which will enable Uuid's from the bson crate 2022-03-22 20:43:54 -07:00
BratSinot
f0f1804214 Make HashMap more generic. 2022-03-11 10:47:32 +02:00
Sunli
dcf58450e8 Implement ScalarType for time::Date. #822 2022-02-15 15:36:18 +08:00
happysalada
d701bd6e69 time: add date struct 2022-02-14 17:48:22 -05:00
Sunli
bf05607e84 Implement InputType and OutputType for Box<[T]> and Arc<[T]>. [#805](https://github.com/async-graphql/async-graphql/issues/805) 2022-01-31 20:01:29 +08:00
Sunli
2eef75510f Implement InputType for Box<str> and Arc<str>. #792 2022-01-21 10:25:50 +08:00
Jenan Wise
dacc5660b6 Add scalars for the time crate's datetime types.
With the `time` feature flag enabled, `time::OffsetDateTime` and
`time::PrimitiveDateTime` can be used directly as scalar values,
similar to the previous `chrono::DateTime` and `chrono::NaiveDateTime`
scalar implementations.
2022-01-19 13:39:38 -08:00
BratSinot
c5d50e789f rustfmt 2021-12-28 13:06:57 +02:00
BratSinot
97c56f1d76 Fix typo. 2021-12-28 12:30:11 +02:00
BratSinot
1ab7dd27e5 Remove some copy-paste. 2021-12-28 12:25:30 +02:00
BratSinot
4d37f4625d Add hashbrown HashMap/HashSet implementations for Input/Output type. 2021-12-28 12:11:40 +02:00
Sunli
f718df1a42 Rework to implement InputType and OutputType for HashMap and BTreeMap. 2021-12-07 11:28:43 +08:00
Sunli
09be5e0021 Fix panic on f32-64::INFINITE/f32-64::NEG_INFINITE/f32-64::NAN output. #735 2021-12-02 20:19:17 +08:00
lfn3
7aea053240 Add support for SmolStr via a feature.
SmolStr is an immutable "packed" string that uses the space normally occupied
by a String's header if the String is short enough.
2021-11-30 09:44:33 +08:00
Sunli
559bbedd3e Allowed use validators on wrapper types, for example: Option<T>, MaybeUnefined<T>.
Remove `OutputJson` because `Json` can replace it.
2021-11-18 15:43:12 +08:00
Sunli
0e9e087691 Move the methods of the Type trait to InputType and OutputType. 2021-11-12 07:23:05 +08:00
Sunli
0335d24ccd rustfmt 2021-11-04 14:42:30 +08:00
meh
0ff4120807 docs: add specified_by_url for Duration
Co-authored-by: Anthony Griffon <an.griffon@gmail.com>
2021-11-03 14:56:42 +01:00
meh
119c5d0f5d feat: add chrono::Duration custom scalar 2021-11-03 14:05:58 +01:00
Sunli
fa6b7964c4 Add specified_by_url for Tz & DateTime<Tz> & Url & Uuid scalars 2021-11-02 20:35:05 +08:00
Sunli
abac47fc50 Merge branch 'master' into update-to-rust-edition-2021 2021-11-02 20:08:41 +08:00
Sunli
9b5149ee23 Respect query object field order. #612 2021-10-26 19:02:15 +08:00
Jeff Registre
30009005d1 Removed import for new prelude members: TryFrom, TryInto, FromIterator 2021-10-22 19:34:49 -04:00
Samuel Hurel
5f3dbda310 Add Bson<->JSON and Document<->JSONObject impls 2021-10-19 10:24:41 +02:00
Miaxos
e07bd5a52e misc: add documentations for naive_time url and uuid 2021-09-20 13:54:30 +00:00
Sunli
ee0e917813 Implement ScalarType for HashMap/BTreeMap to use ToString/FromStr. #585 2021-09-17 09:17:47 +08:00
Sunli
ecf8890e7e Implemented OutputType for Bytes. #569 2021-07-18 21:42:39 +08:00
Bram Hoendervangers
6fb324182b Add decimal scalar 2021-07-01 23:47:30 +02:00
Sunli
543ce408b0 Implement InputType and OutputType for [T; N] array. 2021-06-17 10:39:27 +08:00
Yin Jifeng
05edf40b39 feat: support bson v2.0.0-beta 2021-06-11 11:00:19 +08:00
Sunli
e7382bf549 Rework error propagation. #531 2021-06-08 10:05:30 +08:00
Sunli
f8021c0fb5 Add support for returning multiple resolver errors. #531 2021-06-07 14:03:36 +08:00
Oliver Cooper
aac62f1751 Aligned NaiveDateTime formatting with DateTime
Fixes #526

Chrono uses `%Y-%m-%dT%H:%M:%S%.f%:z` for it's RCC3339 formatting implementation. See 3467172c31/src/format/mod.rs (L680)
2021-06-03 10:12:32 +12:00
Scott Côté
c1c45674c2 style: cargo fmt 2021-05-10 23:00:29 -04:00
Scott Côté
09e6a9dba6 feat: Add secrecy crate feature 2021-05-10 20:49:48 -04:00
Denis Nevmerzhitskii
db6508f861 Fix chrono-tz integration 2021-03-24 19:09:08 +02:00